[jQuery] Select value

2007-06-26 Thread Jean
Well i know this is some newbie question but i´m stuck in this how can i get the select option value?? Tipo resposta: tipo; ?> i have to get the values to append the right tag for the answer -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] select value lost after clone in IE

2007-06-04 Thread Jesse Skinner
It seems that after a jQuery clone(), the value of select boxes are lost in IE (but not Firefox). Try this out: one two $(function(){ $('div').clone(true).appendTo('body'); }); The first option will be selected in the cloned select. Do