I'd like to apply autogenerated jQuery Mobile style (classes jQuery Mobile applies on page loading) after additionnal content loading via Ajax.

I load some content via Ajax which is parsed and organised into a <ul>, but the style jQuery usually applied on page loading isn't applied again on the Ajax loaded content.

link|improve this question

80% accept rate
1  
FYI: On listview the refresh 'method' explained by Cyril is working fine. If you are using elements which don't support 'refresh', you can use the new trigger function from 1.0b3: $('#my_element_id').trigger('create'); – Smamatti Sep 29 '11 at 13:35
feedback

1 Answer

up vote 12 down vote accepted

Assuming your ul is a jquery-mobile "listview", try to refresh the entire list by using :

$('#yourlist').listview('refresh');

jQuery Mobile doucmentation http://jquerymobile.com/demos/1.0a2/#docs/forms/plugin-eventsmethods.html

link|improve this answer
That Good, but it seem that custom styling applied to the list seem to just disappear after the 'refresh' command is there a better way to achieve the same without loosing the custom styling applied to "list style" – Viren Jan 6 at 10:59
1  
I think this is deprecated now. – Brice Favre Mar 23 at 15:11
@ Brice Favre I'm currently trying this now but it doesn't work whatsoever. The method doesn't show in my code hints and actually causes a run-time error. It most certainly looks like it has been. Do you know of a workaround to refresh a list since this no longer works? – DeanGrobler 2 days ago
feedback

Your Answer

 
or
required, but never shown

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