Launch event on first click jQuery -
Launch event on first click jQuery -
is there possibility in jquery add together event e.g alert('hi');
first click ?
yes, may utilize one binding function :
myelement.one('click', function() { alert('hi'); });
jquery
Comments
Post a Comment