Original binding method:
$("#sdfsd").on("click",function(e){ ***** });
This method will only add new methods to the original click method;
Solution: Change the binding method to:
$("#sdfsd").unbind("click").click(function(e){ ***** });
Unbind the click method bound to the element before binding the new click method