JQuery Mobile is making my cry tonight. I\'m trying to build custom controls so I don\'t repeat certain elements through my app, and it\'s giving me a hard time. Specifica
For me, .trigger('create'); always works if applied to the element with data-role="page"
.trigger('create');
data-role="page"
Try This : $('#test-console').trigger('create');
$('#test-console').trigger('create');
Hope it helps..