If I use jQuery’s .append() with a string that has leading spaces, it skips the spaces.
Example: $("#div").append(" test"); appends test without the four spaces that are in front of it.
How would I allow the appending of leading spaces?
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.
Are you expecting to see the white space on the page? if so, you need to use
s or non-breaking spaces.demo: http://jsfiddle.net/W6RMA/