I’m appending some div’s with jquery.
And gave them size and color with css.
However they don’t seem to pick up on the css?
And how can put some of the divs inside others
Here is my code
http://jsfiddle.net/Eqxzz/
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your CSS for
#handlermatches onlyid="handler", notid="handlerXX", you should use a class and a class selector instead, like this:(Note the trailing space on the
idis also removed, to be valid) Also with matching CSS:The same applies to
#drag->.drag, etc. You can test it here.