Month: February 2017

  • What is jQuery ?

    jQuery is simply a library that contains several javascript functions. This library helps us to accomplish the tough jobs in a very easy manner as compared to simple javascript. Not...

  • how to bind custom event

    Bind the onError event. $('selector').bind('onError',{msg:"error occured"},false); This event is triggered whenever error is occurred as below: $("selector").trigger("onError",handler); function handler(e) { alert(e.msg); }