Is there any method to unbind an event that has been bound with one()? Sort of like unone()
According to a comment on the doc page:
Note: you cannot unbind a listener created using .one(). If you want to be able to unbind something that has to occur only once but still be able to unbind it before it occurs, use the example provided for unbinding an event after it's called, and bind it using .bind().
http://api.jquery.com/one/