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
$('me-header').html(retData).trigger('create');
should be:
$('me-header').append(retData).trigger('create');