Klaus Hartl schrieb:
> Peter Bengtsson schrieb:
>> >From the Firebug console...
>>>>> document.getElementById('id_descriptions.sv');
>> <textarea id="id_descriptions.sv" cols="40" rows="3"
>> name="descriptions.sv:latin1:utext:record">
>>>>> $('#id_descriptions.sv');
>> []
>>>>> $('#id_descriptions.sv').size();
>> 0
>>
>> The XHTML validates so I don't see what's wrong with the ID value.
> 
> You may use a period in an id still being valid XHTML, but in this case 
> you cannot use the id as a (CSS) selector, because the period is a class 
> selector.
> 
> The selector in your case would select an element like the following:
> 
> <textarea id="id_descriptions" class="sv"></textarea>

You could try this selector instead:

$('[EMAIL PROTECTED]"id_descriptions.sv"]')


-- Klaus



_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to