I am trying to write a method to catch user clicks in the site menu, but I want the process to be silent for the user, mainly when the user hovers over the anchor tag, it will behave normally (showing the link contained in it). I tried to do it in different ways, and I am working almost now, my code is as follows:
<div class="selectNode" id="selectNode_1" style="color: rgb(229, 229, 229); background-color: rgb(47, 47, 47); ">
<a href="http://www.google.com" class="selectAnchor" style="color: rgb(229, 229, 229); ">
Google
</a>
<img class="childImage" src="icon.png">
</div>
And in jQuery I have:
$(".selectAnchor, .menuAnchor").click(function(event){
event.stopPropagation();
console.log(event.target.nodeName);
$.ajax({
type: 'POST',
url: 'http://localsite/menuRedirect.php',
data: {id:0, module:'Module',source:'Source'},
complete: function(data){
console.log("DONE");
return true;
}
});
});
The link is redirected to the selected page, but the ajax code never ends, so the user's click is never registered.
I tried using event.preventDefault, but there is no way to resume a canceled event.
- , , , ( + ) -
<a href="javascript:saveClick(o)">Google</a>
( ).
, ?