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 remove class after delay in jQuery you can use one of the snippet below. Samples jQuery Sample using setTimeout()…
To Remove duplicates from a IEnumerable using C# or VB.NET you can use the snippet below. Sample .NET 3.5 and…
to delete .svn files and folders using Windows Batch Script you can use the following snippet. Sample Windows Batch Script…
To add or remove a class on hover using jQuery you can use the snippet below. Adding a Class See…
Since XSL 1.0 dows not have inbuild Trimming functions for Strings, you need to define your own templates. You can…
To delete all unapproved comments in WordPress you can use the following snippet. Sample mySQL
To remove any post that is older than X days in WordPress you can use the query below. Sample mySQL
To use select statement in a delete statement using MSSQL you can use the snippet below. Sample MSSQL
To remove columns from DataTable in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET