I have this jquery script to assign a div tag with data from a url:
$(function() {
$(".loadlink").click(function(event) {
event.preventDefault();
$("#result").load($(this).data('url'));
});
});
As well as the #result div, I want to add another div called #crimes which also updates after the one above had ran with data from page2.php.
How can I change this to accommodate that extra div?