It’s possible to select elements using query without using jQuery.
Use document.querySelectorAll
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
It’s possible to select elements using query without using jQuery.
Use document.querySelectorAll
Use this code?
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" ClientIDMode="Static" OnClientClick="disableButton();"/> <asp:Button ID="ButtonDummy" runat="server" Text="Button" ClientIDMode="Static" OnClientClick='return false;' style="display:none;"/>
function disableButton() { $("#Button1").hide(); $("#ButtonDummy").show(); return true; }
http://www.asjava.com/tools/fiddler-tutorial-how-to-use-fiddler/
Illuminations and firebug: it’s aware of popular JS frameworks such as Ext.js, Angular, etc.
DBVisualiser: allow you to edit rich text and images in vast amount of databases. http://www.dbvis.com/
RegExr: to test and visualize regex: http://regexr.com/
XPath Visualiser: to test and visualize XPath for XML query: http://xpathvisualizer.codeplex.com/
WinMerge: to compare files to find differences.
Visual Studio Web Essentials plugin: add useful features for JS development such as #region