
January 25th, 2013, 04:46 PM
|
|
Registered User
|
|
Join Date: Dec 2012
Posts: 28
Time spent in forums: 5 h 2 m 41 sec
Reputation Power: 0
|
|
|
jQuery - Jquery function with Ajax
Hello
I was trying this:
Code:
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
<p>hhhhhhhhhh</p>
In a content I load with Ajax xmlhttprequest. The request only works in the home page, but not in the loaded content.
Any idea how come?
Thx. kr, C.
|