hey guys, i wondered if it's possible to just reload a specific div of a page without passing a url?
$('a.reload').live('click', function(e) {
$sv.load(" #inside")
});
if I click the reload-link i want just to reload the div with the ID inside on the current page. Is there a trick on how to do so with jquery?
regards