I have one div id=userinfo

<html>
<head></head>
<body>
<div id=userinfo></div>
</body>
</html>

And now I want to append something into this div, depending on the localStorage.

if (localStorage==0){$("#userinfo").append("<p>Test</p>");} else {$("#userinfo").append("<p>Hello</p>");}

But it failed, no matter I input this script into separate JS file or add them into the head of the html file. I tried exclude this with Google chrome developer tool's console, it works as expected.

I've tried another way round change the script into:

if (localStorage==0){alert("Test");} else {alert("Hello");}

And add this into JS file, it works!

So, now I'm stacked why my jQuery code not work?

link|improve this question

63% accept rate
1  
I tried it and it works. Can you reproduce the error on a jsfiddle? – cambraca Nov 26 '10 at 5:08
5  
Did you tried your code placing inside $(document).ready(function() {});? – Asif Mulla Nov 26 '10 at 5:09
Hi Asif Mulla, thanks for your hint. It works after I placing them inside $(document).ready(function(){}); if you want, you can post this as an answer :-) – Daniel Chen Nov 26 '10 at 5:24
feedback

2 Answers

You might have conflicts with other javascript libraries. Try to check out http://docs.jquery.com/Using_jQuery_with_Other_Libraries

link|improve this answer
feedback

The jquery append function takes an object as parameter and not a string html. So this should solve your problem, $("#userinfo").append($('<p>Test</p>'))

link|improve this answer
not really. It can accept plain text or html as well. link – Devtrix.net Apr 19 at 8:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.