Jquery Скрывает теги внутри тела

#jquery #jquery Вопрос: <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js" > </script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function() { callMe(); }); function callMe() { $("body .p").hide(); } }); </script> </head> <body> <h2>This is a…

Продолжить чтениеJquery Скрывает теги внутри тела