i have got
<div><a class='link' href='index.php' data-container='target'>Load</a></div>
<div class='target'></div>
i need to write jquery code which load href url to data-container attribute
$('.link').click(function(e) {
e.preventDefault();
$(this.data-container).load(this.href);
});