Just remember that you shouldn't have more than one element on the
page with the same id. For example is something that will cause
problems:

<input type="radio" name="someName" id="Demo" value="hello">
<input type="radio" name="someName" id="Demo" value="blah">
<input type="radio" name="someName" id="Demo" value="bing">

Karl Rudd

On Tue, May 20, 2008 at 11:16 AM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>
> Thanks, Karl.  Your second solution was the one I was looking for. -
> Dave
>
> On May 19, 7:56 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
>> Assuming the following:
>>
>>   <input type="radio" name="someName" id="Demo" value="hello">
>>
>> The following will "check" the radio button:
>>
>>   $('#Demo').attr('checked', true);
>>
>> If you _really_ need to ONLY check the radio button if it's got an
>> id="Demo" AND value="hello":
>>
>>   $('#Demo[value=hello]')
>>
>> Karl Rudd
>>
>> On Tue, May 20, 2008 at 8:47 AM, [EMAIL PROTECTED]
>>
>>
>>
>> <[EMAIL PROTECTED]> wrote:
>>
>> > Hi,
>>
>> > When my page loads, I'd like to check a radio button whose ids are
>> > "Demo" and whose value is "hello".  How do I do this with JQuery?
>>
>> > Thanks, - Dave- Hide quoted text -
>>
>> - Show quoted text -
>

Reply via email to