Skip to content Skip to sidebar Skip to footer

Css Is Not Working On Dynamicaly Loaded Header File In Jquery Mobile

i'm working on jquery mobile single page application so all my page are in index.php with different id's.my problem is that when i tried to make a single header to all pages then o

Solution 1:

Try replacing

$("#" + event.target.id).trigger("create");

with

$("#" + event.target.id).trigger("pagecreate");

Post a Comment for "Css Is Not Working On Dynamicaly Loaded Header File In Jquery Mobile"