Improve your skills

August 29, 2016

Remove Special Characters From String Using Regular Expression (Regex) in JavaScript

In this article, we discuss about how to remove special characters (like !, #, $, %,  >, ?, :, #,@ etc.) from string in jQuery/JavaScript using Regular Expression (Regex).  First, we take a input text or textarea and a input button in body as show in...

August 23, 2016

Remove all HTML Tags from a string in jQuery using Regular Expression (Regex)

In this article, we discuss about how to remove or strip all HTML tags or elements in jQuery/JavaScript using Regular Expression (Regex).  It means, if we pass "<span style='testStyle'> test string </span>" string to the function. Then the function return...

August 19, 2016

Insert Multiple Rows with One Query or Statement in SQL Server

Here I will explain, many different ways to insert multiple rows with single insert query or statement in SQL Server with example.  There are most three different methods describe as shown below- First of all we create a test table (Here my table name is...

August 12, 2016

Add Row Number in SQL Select Query Without Using ROW_NUMBER()

This article explain, how we can add sequence row number to a SQL select query starting from 1 onward without using ROW_NUMBER().  Following example describe all process step by step in easy way. Example- First of all we create a test table and assign some dummy...

August 05, 2016

Show or Hide Password on Checkbox click in jQuery

In this article, I will explain how to Show or Hide TextBox Password when the "Show Password" CheckBox is checked using jQuery without using any additional jQuery plugin. The "Show Password" feature allows user to view and verify their password during logging or registration...

August 03, 2016

Javascript Date Validation dd/mm/yyyy Format Regular Eexpression JQuery

Sometimes we want to validate date in dd/mm/yyyy format. For validate date, we use regular expression that simply checks whether the input date is valid or not.  First, we take a input text and a input button in body as show in below- HTML: <body>  ...

Subscribe for Latest Update

Popular Posts