venkatesan_G02 has asked for the wisdom of the Perl Monks concerning the following question:
In the above code,<script type="text/javascript"> function lookup() { userO=document.getElementById("loginname"); passO=document.getElementById("loginpass"); user=userO.value; pass=passO.value; if(user.length == 0 || pass.length==0) { $('#box').hide(); } else { $('#box').show(); $('#serverlisted').html('Loading Connection Routine'); mns=document.getElementById("mns"); ck=mns.checked; if (ck==true){ $.post("rpc.f", {credenU: ""+user+"", credenP: ""+pass+"", +mns: 1}, function(data){ if(data.length >0) { $('#serverlisted').html(data); } }); } else{ $.post("rpc.f", {credenU: ""+user+"", credenP: ""+pass+""} +, function(data){ if(data.length >0) { $('#serverlisted').html(data); } }); } } } // lookup </script>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Accessing unnamed button using WWW::Mechanize
by bichonfrise74 (Vicar) on Sep 10, 2009 at 23:06 UTC | |
by ashish.kvarma (Monk) on Sep 11, 2009 at 09:57 UTC | |
by venkatesan_G02 (Sexton) on Sep 11, 2009 at 13:52 UTC | |
|
Re: Accessing unnamed button using WWW::Mechanize
by Anonymous Monk on Sep 11, 2009 at 10:59 UTC |