Two useful jQuery scripts for forms 18 November 2012 Guus-Beltman Web, jQuery, Developing Here are two useful jQuery scripts for online forms. The first is to prevent double submission of a form a.k.a. ‘anti-double-click’. $("form").submit(function() { $(":submit",this).attr("disabled", "disabled"); }); .csharpcode, .csharpcode pre { f... [More]
Add IntelliSense for custom jQuery libraries 27 April 2012 Guus-Beltman Developing, jQuery, Visual Studio When you have worked with Visual Studio, you know the power of IntelliSense which helps you speed up coding. It works well with VB/C# languages, but it can also be useful for writing JavaScript / jQuery. When writing JavaScript only basic suggestions are shown: As you can see, only ajax.js, dhtm... [More]