Author:
erics, October 1st, 2012
Add the parameter label_ids=true. For example:
|
{html_radios name="yourName" label_ids=true options=$yourOptions selected=$smarty.request.yourName separator="<br/>"} |
Categories: How-To's, Technology Tags: howto, html, html_radios, ID, Missing, php, Radio, Radio Button, Radios, Smarty, tips
| No comments
Author:
erics, September 7th, 2012
How To Get the Value of a Selected Radio Button in a Specific Form: jQuery(‘input[name=radioName]:checked’, ‘#yourForm’).val()
Categories: How-To's, Technology Tags: Checked, form, JQuery, Radio, Radio Button, selected, Value
| No comments
Author:
erics, May 9th, 2012
|
if ( ! jQuery('input[name=yourRadioGroup]').is(':checked') ) return false; ~OR~ if (! jQuery('input[name=yourRadioGroup]:checked').val()) { alert('Please make a selection...'); } else { alert('Thank you for making a selection!'); } |
Categories: How-To's, Technology Tags: Check, Checked, howto, JQuery, Radio, Radio Button, select, selected, selection, tips
| No comments