Hi,
I've the following footer declared in my index.html page:
When I stay on index.html there's no problem to change the content of ul#log, but when I'm on the Test.html page (my 2nd tab), when I try to add something with jquery by doing this:
If I read the content of ul#log with jquery, I can see the new 'blablabla' text, but on the screen it's not displayed!?
Can anyone explain me why?
Thanks,
Bastien
I've the following footer declared in my index.html page:
<div id="footer" data-role="footer">
<div data-role="tabstrip">
<a href="#tabstrip-home" data-icon="home">Posts</a>
<a href="Test.html" data-icon="action">Activities</a>
</div><ul id="log"> </ul>
</div>$('#log').prepend('blablabla');Can anyone explain me why?
Thanks,
Bastien