i am currently creating an ipad app using the slablet template.

i have customised it so i have a left navigation and a main window.

i have implemented some ajax so that when a user clicks a link on the left navigation, the page that has been selected appears in my main window. this works fine.

i now want to include some jqtouch so that when, when a user clicks one of the links from my left navigation, the page appears in my main window but with an animation like slidein, slideup, pop etc.

how can i do this??

any help will be greatly appreciated

thanks

i have included some of my code below:

Navigation links:

home

Latest News

Important Uploads

Personal Details

Timetable

Tasks

Staff Lookup

University Informtion

ajax that makes pages load in window:

$(document).ready(function(){ // load index page when the page loads $("#main_content_inner").load("home.html");

$("#home").click(function(){ // load home page on click $("#main_content_inner").load("home.html");

}); $("#latest").click(function(){ // load contact form onclick $("#main_content_inner").load("latest.html"); }); $("#important").click(function(){ // load contact form onclick $("#main_content_inner").load("important.html");

}); $("#personal").click(function(){ // load contact form onclick $("#main_content_inner").load("personal.html");

}); $("#timetable").click(function(){ // load contact form onclick $("#main_content_inner").load("timetable.html");

}); $("#tasks").click(function(){ // load contact form onclick $("#main_content_inner").load("tasks.html");

}); $("#staff").click(function(){ // load contact form onclick $("#main_content_inner").load("staff.html");

}); $("#university").click(function(){ // load contact form onclick $("#main_content_inner").load("university.html"); }); });

link|improve this question

0% accept rate
feedback

1 Answer

jqTouch (and jQuery mobile) are both optimized for phones and don't support independently scrolling areas that you normally see on tablets. If you want that you'll need to go Sencha Touch (my project) or an equivalent.

link|improve this answer
thanks for the reply, had a look at the sencha touch, but dont feel theres enough helpp documentation. i am not very experienced with this stuff and to be honest i need all the help i can get. i have kind of crack the issue i was having now – fenelle Kuye-Thomas Feb 2 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.