I want to add a background image for my JQuery mobile page and I have my external CSS. The background image only appears if I remove the JQuery scripts. How could I continue using my own css without the JQuery scripts interfering? I would also like to use the JQuery buttons etc using my CSS
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Find me</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/
jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/
jquery.mobile-1.4.5.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/findme.css">
</head>
<body>
<!-- background not showing up here -->
</body>
</html>
External CSS
body {
background-image: url("../images/bg.jpg");
background-repeat:no-repeat;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
background-position: center center;
background-attachment: fixed;
}