AndrewC14 Posted May 5, 2012 Share Posted May 5, 2012 Hi guys, this is a total noobish bit of code but I'm just trying to learn (so I apologize for my noobishness in advance!) I want 'loading...' to appear before an image but my javascript doesn't seem to be working? here is my code: <html> <head> <link rel="stylesheet" type="text/css" href="http://xzen.co.uk/wp-content/themes/template_29415_1DhpK1xU3ddbLHbaThPI/theme1069/style.css" media="all"> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(window).ready(function(){ $("#image").load(function(){ $("#waiter").fadeOut(function(){ $("#image").fadeIn(); }); }); });? </script> </head> <body> <div id="waiter">Loading...</div> <img src="http://xzen.co.uk/wp-content/uploads/2012/05/newFBhotbin.png" id="image"> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/262128-why-isnt-my-javascript-working/ Share on other sites More sharing options...
haku Posted May 6, 2012 Share Posted May 6, 2012 How is it not working? Quote Link to comment https://forums.phpfreaks.com/topic/262128-why-isnt-my-javascript-working/#findComment-1343490 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.