You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The event object has the data passed in fm.trigger() in the data attribute. However, if the data to be handled is large, it becomes overhead of script execution.
fm.bind('open',function(event){event;// event objectevent.data// data passed in fm.trigger()});
For more light way
fm.bind('open',function(){this;// Make `this` an event objectthis.data// undefind, this has not data});
The text was updated successfully, but these errors were encountered:
The event object has the data passed in fm.trigger() in the data attribute. However, if the data to be handled is large, it becomes overhead of script execution.
For more light way
The text was updated successfully, but these errors were encountered: