jQuery Mobile is a touch-optimized web framework for smartphones and tablets. It provides a unified user interface system across all popular mobile device platforms, built on jQuery.
0
votes
0answers
4 views
What is the best way to build custom jquery mobile custom components
I am working on a experiment of making jQuery mobile custom components with Jquery tmpl(Templating plugin). The component are building using existing JQuerymobile items and also they are programmatic ...
0
votes
0answers
5 views
ASP MVC 4 JQuery Mobile Frozen Button
I have a button on a page that I use as a toggle button. When clicking the button the controller updates a boolean value, IsSelected, in the backend. I then redirect to the index action. In the view ...
0
votes
2answers
13 views
How to center banner with jquery mobile?
I am building a jquery mobile site , and i would like the banner of my company to be positioned like stanford's mobile site , which in a mobile device looks like this :
The size of this image is ...
0
votes
0answers
6 views
backbone model fetch not working on mobile web browser
i'm working with mobile web app using require, backbonejs and jquerymobile. The fetch method is working well on web browsers but returning error with iphone, android browsers.
here's the screenshot of ...
0
votes
1answer
15 views
PreLoader is Not working when Event Fired
Am Working in jQueryMobile(jQM 1.2.1) and PhoneGap(cordova-2.7.0).
Here Now am facing a Problem with Preloader.
Here When we click Submit Button of Page1 then there is some API is send to Server.
On ...
1
vote
0answers
13 views
Rails jQuery mobile not working in production
I have built a Rails 4 jQuery mobile app which works fine in development. The app works in production but not the jQuery Mobile stuff. I just get un-styled output. I am using the gems for jQuery and ...
0
votes
1answer
15 views
In jquery mobile 1.3.1 how do you set selected value in a selectmenu?
I have tried numerous things. Nothing seems to work.
for example:
$('#select').val(myval).selectmenu('refresh');
$('#select').val(myval).attr('selected', 'selected');
...
1
vote
1answer
21 views
call a external js file in to a nother js file
I want to call external java script file in to the tinyMCE js and make all the functions available.
for eg -
I want to say to tinyMCE js that you have the Jquery moble in u and make all the ...
0
votes
0answers
20 views
Display image from database without uploading the image?
Is it possible to display image from database without uploading / inserting image on database first? So, Image is already set on database and on the aplication only display the image without uploading ...
0
votes
1answer
18 views
Dynamically added radio button does not trigger click function
There is a office list of radio button that a user can click on that will display the office information in a div. I have an option for the user to add an office to a list of radio buttons. When the ...
0
votes
0answers
4 views
jQuery Mobile automated ajax loading message Page Loading Widget
According to jQuery Mobile documentation ( http://api.jquerymobile.com/page-loading/ ), "The page loading widget handles the task of displaying the loading dialog when jQuery Mobile pulls in content ...
0
votes
1answer
8 views
Fixed Header/Panels don't “un-fix”visually in landscape despite media query in Android
I'm using the following media query to get rid of a fixed heard and panel in jQuery Mobile.
@media only screen and (orientation: landscape) {
.ui-header-fixed {
position: absolute;
}
...
0
votes
0answers
13 views
Mobile Safari not zooming on orientation change?
I'm working on a web application which I wish to have fill the entire viewable area of a browser, with no scrolling. I've accomplished this with a viewport tag:
<meta name="viewport" ...
1
vote
1answer
34 views
Inline css doesn't work with JQM
I started working with phonegap so I am new with it. I included JqueryMobile to it. It all works nicely but how do I change the style of for example a text field.
When I use inline css like
...
2
votes
1answer
25 views
How can access textfield ids with page id in JQM
I have same id in two different pages in JQM
How can i access these id with page ids
as we know that in JQM every page has its on id
$('#pageId #textfieldId').val();
Or some thing different?