How to disable all links using jQuery
To disable all links using jQuery you cna use the snippet below. Samples jQuery Sample <script type="text/javascript"> $("a").click(function() { return…
All the Code Snippets and Samples you need
To disable all links using jQuery you cna use the snippet below. Samples jQuery Sample <script type="text/javascript"> $("a").click(function() { return…
To uppercase the first letter of each word in C# and VB.NET you can use the following snippet. Sample C#…
To delete all pingbacks in WordPress you can use the mysql query below.
To list the avaiable fonts in Java you can use the following snippet. Sample Java
To iterate a dictionary in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET for more…
To list all user defined functions in MSSQL you can use the following snippet. Sample MSSQL
To show all errors in PHP you can use the following snippet. Sample PHP
To list installed services in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET
To get all culturenames in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET
To read a textfile line by line in VBA you can use the following snippet. To read a textfile complete…