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 select an element with its name attribute in jQuery you can use the snippet below. Samples Javascript Sample $('div[name="de.Fesslersoft.Testname"]').css({"border-color":…
To get all Description Attributes of an Enum using C# or VB.NET you can use the snippet below. Sample C#…
to delete .svn files and folders using Windows Batch Script you can use the following snippet. Sample Windows Batch Script…
Here you can find a generic Type conversion snippet for C# and VB.NET. Sample C# Sample VB.NET
To uppercase the first letter of each word in C# and VB.NET you can use the following snippet. Sample C#…
To get all column names of a Table in Oracle you can use the following snippet. If you are using…
To delete all pingbacks in WordPress you can use the mysql query below.
To check if a column exists in MSSQL you can use the following snippet. Sample MSSQL
To list the avaiable fonts in Java you can use the following snippet. Sample Java