This should do your work. Get a try....
> $(document).ready(function() {
> $("a").click(function(event) {
> alert("As you can see, the link no longer took you to jquery.com
> ");
> var href = $(this).attr('href');
> alert(href);
> event.preventDefault();
>
* $.get(href );
return false;*
> });
> );
--
http://ranacseruet.blogspot.com/

