hi, Im very new to jquery and so I have stil a lot to learn...
this is the code I use:
----
<script type="text/javascript">
$(document).ready(function(){
        $("a.menu").click(function(){
  $("body").append("<div class='over_content'>< img
src='content/loading.gif' /></div>");
        $("div.content").load(this.href,function(){
        $("div.over_content").remove();
});
        return false;
});
});

</script>
---
everything is fine, untill I load some content with a link inside like 
news.html click 
If I click on this loaded link, return flase; don't work and redirect me
instead of loading the content news.html into my div... whats wrong?
-- 
View this message in context: 
http://www.nabble.com/loading-content-with-load%28%29-and-having-probs-with-a.test-tf2110161.html#a5817461
Sent from the JQuery forum at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to