[jQuery] Re: Once validated..

2009-01-13 Thread mbraybrook
You can check a var in jQuery using the following method: ?php $my_php_var = Value; ? script ... var my_js_var = ?php echo $my_php_var; ?; if (my_js_var == Value) { alert(Value set); } /script Thats one of the Q's down! M On Jan 13, 3:45 am, Nikola nik.cod...@gmail.com

[jQuery] Re: Once validated..

2009-01-13 Thread Nikola
I see, you set a js var to equal the var in php, that's very good to know. Thank you.