Is there any sure shot method , function or Plugin which will help us alerting the Mobile Browser grade as per JQuery Mobile specification and compatibility Matrix
This will be a great help for Application devlopers to inform the End-User if there browsers are not compatible.
In Select Menu there is no option for pagination. In case we have huge amount of data then filtering(Serch Field) and Pagination will be a great help for developers who are using Jquery Mobile for the application development.
Please share if this can be taken up. Or any alternate suggestions.
I am trying to display a pop-up in my application but the below sample code also does not displays the same as its shown in jquery mobile docs gallery.
Please help in resolving the same I guess some CSS is missing.
Code Snippet :
<!DOCTYPE HTML> <html> <head> <title> New Document </title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" /> <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script> </head> <body> <div data-role="page" id="page1"> <a href="#popupBasic" data-rel="popup">Tooltip</a> <div data-role="popup" id="popupBasic">This is a completely basic popup, no options set.</div> </div> </body> </html>