Latest Answer : /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/Use this regular expressionYou can be more strict by using .com,.biz,.org,.arpa etc in regular expression ...
Latest Answer : document.forms[0]..options[index]= new Option(Apearingtext,value)for (var i=0;i
What is the main difference between Client side JavaScript and and Server side Java Script. How actually they run on both side with Example?
Latest Answer : //Javscript code pagination.js file===========function Pager(tableName, itemsPerPage) { this.tableName = tableName; this.itemsPerPage = itemsPerPage; this.currentPage = 1; this.pages ...
There are numerous methods for ensuring the security of a form. Some of them are mentioned below namely:
Check the form action attribute:
Make a check on the form action attribute. That is
Latest Answer : function noClick(e) { if (navigator.appName == 'Netscape' && e.which == 3) { alert("no right click please") ...
Latest Answer : Javascript is client side language and Java is serverside language ...
Latest Answer : By disabling right click we can restrict user not to copy webpage sourcecode. ...
why is java swing so efficiently used in most graphics programming and not effected by systems graphic properties?