Re: Assigning a variable to select box selection JqueryMobile Programming Web Development by Peek@u … now vanished) . What Im doing is recreating the site with jquerymobile to port out to phone gap, etc. On the original… Help Centering Buttons / Button Size Digital Media UI / UX Design by atticusr5 … src="http://www.mytjnow.com/storage/2011-2012/codeplayground/jquerymobile-10b1/tj2011banner.png" width="100%"> <… src="http://www.mytjnow.com/storage/2011-2012/codeplayground/jquerymobile-10b1/tjplain.png" width="90" height="… Mobile page - where to keep private data on device? Digital Media UI / UX Design by Sratytaty …'T use HMTL5 with all its features. I consider using jQueryMobile framework. Please, help! Thanks in advance!! javascript nested list from websql data with JQM Programming Web Development by wHiTeHaT44 … days i try to create a nested-ist generated by jquerymobile from websql querys. I can only master the code to… Phonegap google map for android Programming Mobile Development by youvi Hello guys, Am working on phonegap(jquerymobile) for an android application.I want to implement a map … Structure of a web app using PhoneGap Programming Web Development by m.tompkinsnz … App. So far I've decided on using PhoneGap with jQueryMobile client-side, which will request and update information in a… JQuery Get Selected Listview Item Programming Web Development by Skeldave … when it is long pressed. I have tried using the JQUeryMobile TapHold event which works but only gets the ID of… Re: Structure of a web app using PhoneGap Programming Web Development by LastMitch >So far I've decided on using PhoneGap with jQueryMobile client-side, which will request and update information in a … Re: Web Application strategy plan. Best Technology To Choose Programming Web Development by diafol I haven't had too much experience with Microsoft setups, so I can't really comment, but LAMP setups are simple and scalable. Mobile access AFAIK depends more on front-end interactive elements (javascript), rather than the back-end stuff. So things like jQuery for mobile: [url]http://jquerymobile.com/[/url] Re: [Q] Cross Platform Mobile Dev. Framework Programming Mobile Development by mwolke … with UI and Code editing and incorporates both Phonegap and jQuerymobile. Bit like a cloud based Visual Basic for mobile and… Re: writing a function to dynamically change page of a jquery mobile on button Digital Media UI / UX Design by LastMitch … couple of links regarding about using **jQuery mobile** changes: http://jquerymobile.com/demos/1.2.1/docs/pages/page-scripting.html… Re: Javascript / jQuery and maths Programming Web Development by LastMitch … assuming you are putting image in the div tags): http://jquerymobile.com/demos/1.0a2/experiments/api-viewer/docs/attr/ Re: Drop down menu with images and text Programming Web Development by stbuchok Nowhere in your original question do you mention that you want to use a library or a tool, so maybe it would be good to include that next time. Try jQuery mobile: http://jquerymobile.com/themeroller/ if you do a simple search, you will get tutorials on how to make one. http://lmgtfy.com/?q=mobile+menu+tutorial Re: Drop down menu with images and text Programming Web Development by riahc3 … include that next time. > > Try jQuery mobile: http://jquerymobile.com/themeroller/ > > if you do a simple search… Re: Which framework is the best to develop a mobile application using database Programming Web Development by pzuurveen I realy like [jquery mobile](http://jquerymobile.com/demos/1.2.1/) for the ui And do the database thing yourself Re: Which framework is the best to develop a mobile application using database Programming Web Development by jkon To be honest I had many concerns about jQuery , and I still have. But I use it. So sure http://jquerymobile.com/demos/1.2.1/ is a clean logic for the UI . But the UI is just the end point , the model , the data structure and how controller does it is the main. And UI isn’t the view. Re: New to responsive web design, looking for web services Digital Media UI / UX Design by jrewing … look at the resources on the jQuery Mobile site - http://jquerymobile.com/resources/. A potential solution to your requirement - handling all… Re: need article to learn how to did html slide on mobile browser? Digital Media UI / UX Design by gabrielcastillo Checkout jquery mobile. You can create mobile web page. [Link](http://jquerymobile.com/) Re: Voting buttons don't work on iOS Programming Web Development by JorgeM Yeah, worked for me from my iOS device (just upvoted your last comment) On another note, I worked on a site several months ago where I had a similar issue. Tried the cursor trick too but eventually with with jQuery Mobile's tap(). http://api.jquerymobile.com/tap/ That seemed to have provided me with 100% compatibility. Re: jQuery and jQuery Mobile conflict Programming Web Development by mitchell.schols … the problem is the version of jquery in conjuction with jquerymobile. i'm using a lot of "normal," jquery… Assigning a variable to select box selection JqueryMobile Programming Web Development by Peek@u Hello I am having an issue assigning a variable to a select box selection so that i can feed the variable back into future queries. Please see code below: <select name="room" id="msg-room"> <?php $query = mysql_query("SELECT * FROM rooms ORDER BY … Re: Assigning a variable to select box selection JqueryMobile Programming Web Development by LastMitch **@Peek@u** >The selection list loads and populates fine. I just need a way to assign $data["Room"] a variable so that I can insert it into the Heading of the page as well as back into a sql query that will return the number of users in a selected room. Since you are using **JQuery** why not just used **AJAX** the data rather than … Re: Assigning a variable to select box selection JqueryMobile Programming Web Development by LastMitch >I didn't know how to explain why the variable wasn't working for the user count now so instead I was trying to recreate it using php since I couldn't figure out whats going wrong with the ajax honestly. I'm not familiar with AJAX. I also don't have a db to test this out. Was there an error on the query? I mean there's has to be an error at … Re: JQuery Get Selected Listview Item Programming Web Development by AleMonteiro Assuming that the $(this).index() is the ListView index, you could do something like: $(this).find("li.selected-class") Probably the ListView uses some css class to indicate which item is selected or not. I don't know which class it is, but it shouldn't be hard to figure it out.