by WallShadow on Tue Jan 08, 2013 12:42 am
([msg=72125]see Re: How secure is jquery/javascript?[/msg])
With javascript/jquery, you must assume that the user has access to everything he is given. If you give him a fancy login screen, he has the ability to mod/hack the js to his hearts content. So if you are securely processing the data you receive from the user server-side (along with proper filtering of course), then you can feel free to do anything fancy like effects with js. If js is disabled, then anything that you make based on js won't work, but html elements still work, so a <form> tag will still work as intended. You may want to also use the <noscript> tag which displays html when js is disabled.