How to get the current path using VBScript
To get the current path using VBScript you can use the snippet below. Samples VBScript Sample If you have any questions or suggestions feel free to rate this snippet, post…
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 false; }); </script> If you have any questions or suggestions…
How to remove class after delay in jQuery
To remove class after delay in jQuery you can use one of the snippet below. Samples jQuery Sample using setTimeout() var element = $('#element'); element.addClass('current'); setTimeout(function() { element.removeClass('current'); }, 2500);…
How to check if a value is a double value in Android (Java)
To check if a value is a double value in Android you can use the snippet below. Samples Java (Android) Sample public static boolean IsDoubleValue(String input) { if(!TextUtils.isEmpty(input.trim())) { //use…
How to refresh the current Android Fragment
To refresh the current Android Fragment you can use the snippet below. The code must be placed inside the Fragment that needs to be updated. The snippet will call the…
Colorpicker
We have just released another tool in our new Tools section. It’s a online Colorpicker, which uses HTML, AngularJs and Bootstrap. Colorpicker If you have any questions or suggestions feel…
How to export Gridview data to Excel using devexpress XtraGrid
To export Gridview data to Excel using devexpress XtraGrid have a look at the sample below. Samples C# Sample using System; using System.Data; using System.Data.SqlClient; using System.Windows.Forms; using DevExpress.XtraEditors; using…
How to select an element with its name attribute in jQuery
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": "#000000", "border-width":"15px", "border-style":"solid"}); if you remove the div in div[name=”de.Fesslersoft.Testname”]…
XML Formatter
We have just released another tool in our new Tools section. It’s a online XML Formatter, which uses HTML, AngularJs and Bootstrap. XML Formatter If you have any questions or…
UUID / GUID generator
We have just released another tool in our new Tools section. It’s a online UUID/GUID generator, which uses HTML, AngularJs and Bootstrap. UUID/GUID Generator If you have any questions or…