itivae
04-13-2012, 01:46 AM
Hello all, I have a small problem with some code. I have an expandable and contractible list. but the javascript that releases the link function asks for a new window.
$('#cvList a').unbind('click').click(function() {
window.open($(this).attr('href'));
return false;
});
This opens the link in a new window. I, however, am trying to use it to link to anchors. Can anyone help me release the unbind function to the same page?
Thanks
$('#cvList a').unbind('click').click(function() {
window.open($(this).attr('href'));
return false;
});
This opens the link in a new window. I, however, am trying to use it to link to anchors. Can anyone help me release the unbind function to the same page?
Thanks