This has been driving me nuts! I\'ve searched and tried a bunch of suggestions that seem like they should work, so I must be doing something foolish.
$(docum
Maybe you just need to prevent the default action when you click a link or check the url.
Try this:
$(document).ready(function(){ $('.trigger').click(function(e){ e.preventDefault(); var link = $(this).attr("href"); $('#target').load(link); }); });
Also there's an example