Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just have copied a simple script from W3School and cannot get it running: Here it is:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://Web Testing/js/jquery-1.8.0.min.js">
</script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>

It works on their Tryit Editor with the following line but does not work even with this line on my Mac under BBEdit

share|improve this question
Any errors? Look at your JavaScript Console – algorhythm Dec 18 '12 at 14:58
1  
Your javascript source url seems to be wrong... Web Testing - a space in a url? – Chips_100 Dec 18 '12 at 14:58

4 Answers

you ned to include jquery the link you included is not working

try

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

also useing the google hosted libraries is a good option because many other website using it so in most case it will get in browser cache

share|improve this answer
I have tried that and it is not working. – romaer Dec 18 '12 at 18:36
<script src="http://code.jquery.com/jquery-1.8.3.min.js" type="text/javascript">
   <!--left blank-->
</script>



<script type="text/javascript">

  $(document).ready(function(){

       /*Your code*/

     });

</script>
share|improve this answer
<script type="text/javascript" src="http://Web Testing/js/jquery-1.8.0.min.js"></script>

The link to the jquery library is invalid, replace that code with this:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
share|improve this answer
Thanks, it works. Where should I put query-1.8.3.min.js file if I am using it for iOS app that works off-line? – romaer Dec 18 '12 at 21:34
put it at the top somewhere, it should be above all the other javascripts, feel free to accept this answer ;) – Eru Rōraito Dec 19 '12 at 8:42

you need to include jquery before use . or if you include jquery after script than use ready or load event

tp include jquery you can either choose google hosted library or jquery

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

or

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.