refreshing certain div many times
Hi
I need to reload part of page (div) everytime I click the link in this part (div).
I write almost successfully code bellow - when I click first time it works - but could not refresh second time and so on (nothing happend)
<!DOCTYPE html>
<html>
<head>
<script>
$(document).ready(function(){
$("#abcd").click(function(){
$("#div1").load("this_file.html #div1");
});
});
</script>
</head>
<body>
<section>
<div id="div1">
<article>
<h2>this article will be refreshed</h2>
<a id="äbcd" href="#">click here</a>
</article>
</div>
</section>
</body>
</html>