I have a click event I wired up on a div on my page.
click
div
Once the click event has fired, I want to unbind the event on that
Taken from the jQuery documentation found here:
$("#unbind").click(function () { $("#theone").unbind('click', aClick) .text("Does nothing..."); });