With reference to SJG's answer and from W3Schools.com
As of jQuery version 1.7, the off() method is the new replacement for the unbind(), die() and undelegate() methods. This method brings a lot of consistency to the API, and we recommend that you use this method, as it simplifies the jQuery code base.
This gives:
$("#someid").off("click").live("click",function(){...
or
$("#someid").off("click").bind("click",function(){...