Looking for help hiding a simple button?
<input type="button" id="logoutBtn" value="logout"
data-theme="d" data-inline="true" aria-disabled="false">
Attempted to hide it with this code but it didn't work:
$('#logoutBtn').hide();
Tried another approach without success:
$('#first').live('pageinit', function(e){
$('#logoutBtn').hide();
});
Any advice on what might be going wrong?