What i want to do is stop the clickable link from forwarding the user to the href value as i am calling the value via .load().
Here is my code;
$('#prac_slider li a').click(function(){
var $permalink = $('#prac_slider li a').attr('href');
$('div#abc').load($permalink + ' #loadMe');
});
i have tried to add .unbind('click', variable);
to the element and loading my above code via a variable but it still seems to forward the user.
Everything else works, it loads the data into #abc but it then forwards the user to the href itself.
How would i disable this?