- Posted On 1 December 2014
- By
- In Programming
In one my project, there was requirement where I had to perform some activites once user loads the particular div at first time and I had completed that code with some more lines of code as compare to the code which I am sharing now.
You know the on() method of jQuery, if not you can read more about it here, on() method attaches event handlers to the selected element as from jQuery version 1.7 it also provides all functionality required for attaching event handlers including support for old bind(),delegate() and live() method.
Using on() method you can attach event handler to element and using off() method you can remove bound events like below to have functionality of showing or executing an event only once.
$("#btnClick").on( "click", function(e) { alert( "This alert will be displayed only once." ); $(this).val("No use of clicking now!"); $(this).off(e); });
You can achieve same functionlity using one() method provided by jQuery and code will get changed like below.
$("#btnClickOne").one( "click", function(e) { alert( "This alert will be displayed only once." ); $(this).val("No use of clicking now!"); });
Check live fiddle of the above code.
If you check the above code carefully one() method gives same behaviour but there is no need to attach and deattach the event explicitely as it handles it internally.
Hope this simple and short information has added something in your knowledge bank. Thanks.
- Tags :
- jQueryJavascript
Top 10 Visual Studio things which can boost developers coding speed
Visual Studio 2012 provides some coding features by which you can code faster if use them properly. This post will cover top 10 things among them to boost your development speed.
Visual Studio 2008 Shell and TFS integration
Visual Studio 2008 Shell and TFS integration is the problem for all newbies of BIDS and TFS. Here is the solution.
Assembla - Free and private repository to manage your source code online with SVN subversion hosting
With Assembla you can share source code with others online. Free & Private source code repository with SVN Subversion, Git & Perforce Hosting.
How to select all checkboxes as per range of numbers in jQuery MVC
JQuery code to select all checkboxes as per range provided with select all and deselect all functionality which can be embedded in ASP.NET MVC too. With validations such as invalid range.
Best CSS Gradient background generator tools online
Here are some best CSS gradient background code generator online tools using which you can create a cross browser css code for gradient backgrounds.