Button not visible from smartphone
Posted: 2023-10-26 21:21
Good morning,
I added a button with which the application only shows me the rows with values not yet settled. The button works well if I open the application from the PC. When I open it from my smartphone the button is not visible. What can I do to solve the problem?
I added a button with which the application only shows me the rows with values not yet settled. The button works well if I open the application from the PC. When I open it from my smartphone the button is not visible. What can I do to solve the problem?
Code: Select all
jQuery(function(){
jQuery('#Filter').after('<button class="btn btn-warning" type="button" id="filter-button"><i class="glyphicon glyphicon glyphicon-filter"></i>Non saldati</button>');
jQuery('button[id=filter-button]').click(function(){
window.location = 'Movimenti_acquisto_blocco_view.php?SortField=&SortDirection=&FilterAnd%5B1%5D=and&FilterField%5B1%5D=17&FilterOperator%5B1%5D=not-equal-to&FilterValue%5B1%5D=1';
});
});