I know that you can add new jQuery functions by $.fn.someFunction = function()
$.fn.someFunction = function()
However, I want to add functions to specific elements only. I tried this
I'm not also sure with my answer if this will help you but just a try how about using .live?
$(selector).live(click,function(){ //some codes here });