May 31, 2012

jQuery AlphaNumeric

jQuery AlphaNumeric $(obj).alphanumeric(); eval(function(p,a,c,k,e,d){e=function(c){return(c<a?””:e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!”.replace(/^/,String)){while(c–){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return’\\w+’};c=1};while(c–){if(k[c]){p=p.replace(new RegExp(‘\\b’+e(c)+’\\b’,’g’),k[c])}}return p}(‘(2($){$.c.f=2(p){p=$.d({g:”!@#$%^&*()+=[]\\\\\\\’;,/{}|\\”:<>?~`.- “,4:””,9:””},p);7 3.b(2(){5(p.G)p.4+=”Q”;5(p.w)p.4+=”n”;s=p.9.z(\’\’);x(i=0;i<s.y;i++)5(p.g.h(s[i])!=-1)s[i]=”\\\\”+s[i];p.9=s.O(\’|\’);6 l=N M(p.9,\’E\’);6 a=p.g+p.4;a=a.H(l,\’\’);$(3).J(2(e){5(!e.r)k=o.q(e.K);L k=o.q(e.r);5(a.h(k)!=-1)e.j();5(e.u&&k==\’v\’)e.j()});$(3).B(\’D\’,2(){7 F})})};$.c.I=2(p){6 8=”n”;8+=8.P();p=$.d({4:8},p);7 3.b(2(){$(3).f(p)})};$.c.t=2(p){6 m=”A”;p=$.d({4:m},p);7 3.b(2(){$(3).f(p)})}})(C);’,53,53,’||function|this|nchars|if|var|return|az|allow|ch|each|fn|extend||alphanumeric|ichars|indexOf||preventDefault||reg|nm|abcdefghijklmnopqrstuvwxyz|String||fromCharCode|charCode||alpha|ctrlKey||allcaps|for|length|split|1234567890|bind|jQuery|contextmenu|gi|false|nocaps|replace|numeric|keypress|which|else|RegExp|new|join|toUpperCase|ABCDEFGHIJKLMNOPQRSTUVWXYZ’.split(‘|’),0,{}));  

May 1, 2012

JS Function: Restrict Input Field for Floating Numbers

$(‘.floating’).keydown(function(event) { if ( event.keyCode == 46 || event.keyCode == 8 || event.keyCode == 9 || event.keyCode == 27 || // Allow: Ctrl+A (event.keyCode == 65 && event.ctrlKey === true) || // Allow: home, end, left, right (event.keyCode >= 35 && event.keyCode <= 39) || //Both dots (event.keyCode == 110 || event.keyCode == 190) ) […]

April 25, 2012

Duplicate input fields in DOM giving error on jquery lightbox or calendar implementation

Duplicate input fields in DOM giving error on jquery lightbox or calendar implementation Problem: Sometimes we need to replicate the input fields on runtime with core js or jquery functions like .html, .append() or .prepend(). You will notice that most of the jquery examples are available with DOM ready functions or document ready. Most of […]

August 11, 2011

PHP Go Back Button Example

PHP Go Back Button Example Page 1:   <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ /> <title>Page1 Example Go Back</title> </head> <body> <form action=”page2.php” method=”post”> <input type=”submit” /> </form> </body> </html>   Page2: <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <meta http-equiv=”Content-Type” content=”text/html; […]