E4X stands for “ECMAScript for XML” and ECMA in turn stands for European Computer Manufacturers Association. ECMAScript for XML (E4X) is a programming language extension that adds native XML support to ECMAScript. It is the next gen of Scripting Language.
ECMA is the standardizing and organization JavaScript. ECMA has also developed standards for quite a few [...]

  • Share/Bookmark

We can see various type of password strength meter when we are registering on different types of websites. Here I will show you how to create a simple password strength meter using JavaScript and PHP.
There will be three steps:
1st create a html form:
{form method=”post”}
{h1}Password strength meter{/h1}
{label for=”pass”}Password{/label}
{input type=”password” name=”pass” id=”pass” onkeyup=”passwordStrength(this.value)” /}
{label for=”passwordStrength”}Password strength{/label}
{div [...]

  • Share/Bookmark

This code will give you the date after 30 days and number of days between any two dates.Sometimes it is required in a program to get a particular date and the difference between two dates. This code is short but essentially effective.
Calculating The Date After 30 Days:
function  next_date()    {
var d1==$(“# current_ date”).val();
// The [...]

  • Share/Bookmark

A lot of websites now require registration, which means that users are either assigned a username and password, or get to select one. Here are some simple steps that will make the process a bit more secure:
Use the “password” input type:
Instead of <input type=”text”> you should always use <input type=”password”> as this lets the browser [...]

  • Share/Bookmark

There is a advantage in Ajax form validation, because the validation is completed without page reloading.I also learnt how to retrieve the multiple checkbox values in which input names are the same.It was very interesting for me to create a table of two column which displayed the from database. The code is very simple.

  • Share/Bookmark

I was required to create a dashboard from where users would be able to edit certain tabular data. Each row of data had a delete option on the extreme right. If the user wishes to delete an entry from the table, they can simply click on the respective delete button and the entire row would be dropped from the table. This can be achieved with a simple two line jQuery.

  • Share/Bookmark