I have 9 radio buttons (oh and I'm using code igniter)
<?php
echo form_radio('name1', '3')." 3 ";
echo form_radio('name1', '2')." 2 ";
echo form_radio('name1', '1')." 1 ";
echo form_radio('name2', '3')." 3 ";
echo form_radio('name2', '2')." 2 ";
echo form_radio('name2', '1')." 1 ";
echo form_radio('name3', '3')." 3 ";
echo form_radio('name3', '2')." 2 ";
echo form_radio('name3', '1')." 1 ";
?>
So i want something to check for duplicates and display an error (preferable a div) without reloading the page and i would also like the form to submit without the submit button (for example hotornot.com but with 3 sets of radio buttons).
I understand this needs jQuery and possibly AJAX (?) and i'm completely clueless with them both.


Sign In
Create Account

Back to top









