I have a hyperlink button and I don't know the click event function associated with it.
<div class="originalPlace"> // Original Element parent
<a title="Create" class="QButton" style="visibility: visible;"><span class="k-sprite fa fa-plus"></span></a>
</div>
....
<div class="newPlace"></div> // Move here
However, I am trying to move this button to another position in the DOM using append and I would like to move its associated click event as well. Is there a way to know the current click event using jQuery, append to newPlace and then move the click event associated with it as well? Kindly let me know.
Cheers.