[jQuery] Re: Appended element is not draggable

2010-01-28 Thread phamquocviet
After append new tag, you have to bind the draggable() event again... On Jan 28, 1:42 am, Mircea wrote: > Hi > I have a container div with some spans. I had set the spans to be > dragable and I want to do a function that on click will append a new > span to my container and make it also draggable

[jQuery] Re: Dynamic Selects

2010-01-25 Thread phamquocviet
jQuery("#mySelect").load("something.html" , function(){ // set the value here }); Did you do like that or jQuery("#mySelect").load("something.html"); // set the value here ... ??? On Jan 24, 9:42 am, "Steffan A. Cline" wrote: > I am wondering if I'm missing something in m