Re: when javascript is disabled in browser

2011-03-17 Thread J Alejandro Ceballos Z
Use Javascript disabled Atentamente, J. Alejandro Ceballos Z. -- To unsubscribe, e-mail: beginners-cgi-unsubscr...@perl.org For additional commands, e-mail: beginners-cgi-h...@perl.org http://learn.perl.org/

Re: when javascript is disabled in browser

2011-03-14 Thread David Christensen
On 03/14/2011 06:25 AM, Rahul!! wrote: I am new to cgi-perl web development. When javascript is disabled in the browser, how to validate it from the CGI file?? I want to do something like this, if (/javascript is disabled){ print " This webapp needs javascript, please enableable javascrip

when javascript is disabled in browser

2011-03-14 Thread Rahul!!
I am new to cgi-perl web development. When javascript is disabled in the browser, how to validate it from the CGI file?? I want to do something like this, if (/javascript is disabled){ print " This webapp needs javascript, please enableable javascript and retry"; exit; }else #move on }