| | |
Problem with Radio Button error "[object HTMLInputElement]"
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
•
•
Join Date: Mar 2008
Posts: 36
Reputation:
Solved Threads: 0
Hello,
I am having problems retrieving correct values from two radio buttons in my AJAX script below.
The radio button values are either a 1 or 0 and always produces 0 regardless of which button is selected.
Once in AJAX, I can not have the script retreive a 1 or 0. AJAX script produces "[object HTMLInputElement]" as the response. Not sure what is going wrong.
Thanks in Advance.
Diego
I am having problems retrieving correct values from two radio buttons in my AJAX script below.
The radio button values are either a 1 or 0 and always produces 0 regardless of which button is selected.
Once in AJAX, I can not have the script retreive a 1 or 0. AJAX script produces "[object HTMLInputElement]" as the response. Not sure what is going wrong.
Thanks in Advance.
Diego
PHP Syntax (Toggle Plain Text)
<script type="text/javascript"> var settings = getXmlHttpRequestObject(); function saveCar() { if (settings.readyState == 4 || settings.readyState == 0) { var car = escape(document.getElementById('car').value); /* PROBLEM - Radio Button Processor */ var proc17 = document.getElementById("search17"); for (var i = 0; i < proc17.length; i++) { if (proc17[i].checked){ search17 = proc17[i].value; break; } } settings.open("GET", 'abc.php?proc17=' + proc17 + '&car=' +car, true); settings.onreadystatechange = handleSettings; settings.send(null);}} function handleSettings() { if (settings.readyState == 4) { } } </script>
•
•
Join Date: Mar 2008
Posts: 36
Reputation:
Solved Threads: 0
The code that ended up working for me is below. I have included only the ajax javascript Thanks to all for your help!
PHP Syntax (Toggle Plain Text)
var settings = getXmlHttpRequestObject(); function savePreview() { if (settings.readyState == 4 || settings.readyState == 0) { var car = escape(document.getElementById('car').value); for (index=0; index < document.gMoney.searchMe.length; index++) { if (document.gMoney.searchMe[index].checked) { var radioValue = document.gMoney.searchMe[index].value; break; } } settings.open("GET", 'abc.php?searchMe=' + radioValue + '&car=' +car, true); settings.onreadystatechange = handleSettings; settings.send(null);}} function handleSettings() { if (settings.readyState == 4) { } }
![]() |
Other Threads in the PHP Forum
- Previous Thread: Errors after installing WAMP Server 2
- Next Thread: convert PHP to javascript?
| Thread Tools | Search this Thread |
apache api array auto beginner binary broken cache cakephp checkbox class cms code codingproblem cron curl customizableitems database date display dynamic echo email error file files filter folder form format forms forum function functions gc_maxlifetime global google headmethod host href htaccess html image include insert ip javascript joomla limit link login mail malfunctioning memmory memory menu mlm multiple mysql nodes oop parameter parsing paypal pdf php phpmysql popup query radio random recursion recursiveloop remote script search select server sessions sms snippet source space sql static survey syntax system table trouble tutorial up-to-date update upload url validator variable video web youtube





