Hello,
I am trying to do the following:
$("#something ."+id).click(function() {
callFunction(id,message);
});
$("#something ."+id).silentclick(function() {
callFunction(id,message,'silent');
});
But silentclick gives an error saying function does not exist. How do I go about creating my own custom event like silentclick?
Thank you for your time.