In some cases , screen "#page1", when focussed, show in the address bar the 
address "#_page1" instead of the expected "#page1". Why?
 

Le vendredi 10 février 2012 09:51:27 UTC+1, Remi Grumeau a écrit :

> humm... i just realize i haven't done anything about this in the 
> documentation.
>
> Links:
>
> #1 <a href="#page1">
> This will look for a screen with id attribute to "page1" and slide to it.
>
> #2 <a href="page1.html">
> This will load the content of page1.html, add it to the current document & 
> slide to the first screen of the loaded content. Since it loads all the 
> content, we usually use .frag (fragment) file that contains the screens you 
> need. If this loaded document contains a <body>, <head>, it creates bugs.
>
> #3 <a href="#page1" target="_replace"> or <a href="page1.html" 
> target="_replace">
> It replaces the link element by the linked content (aka "Read more" at the 
> end of a list)
>
> #4 <a href="page1.html" target="_self"> or <a href="page1.html" 
> target="_webapp">
> Doesn't perform any AJAX call or load to the external file. It just loads 
> it like a normal link in a normal webpage.
>
> #5 <a href="page1.html" target="_blank">
> Opens the link in a new tab/window.
>
> Hope this helps!
>
>
> Remi
>
>
> On Fri, Feb 10, 2012 at 8:18 AM, Manmade <i...@manmade.se> wrote:
>
>> Dylanparrin
>> Take a look at the jqtouch framework.
>> There you can get seperate pages from your server with get requests.
>> That way you can have how many pages you like!
>>
>> Another way is to use the childbrowser plugin, this if you make an native 
>> app with phonegap.
>> The childbrowser opens up external pages in a new window and when you 
>> close that window you are still in you app.
>> Hope it helps!
>>
>>
>> ----- Original Message ----- From: "dylanparrin" <dylanpar...@gmail.com>
>> To: "iPhoneWebDev" <iphonewebdev@googlegroups.com**>
>> Sent: Thursday, February 09, 2012 6:52 PM
>> Subject: Linking to static pages?
>>
>>
>>
>>  Hi all,
>>>
>>> I really need to link to static pages but keep it in the app. So the
>>> toolbar with the back button stays there, but the content is being
>>> pulled from elsewhere. The reason: I have a LOT of content, like
>>> hundreds of pages, having all of that code on one HTML document can't
>>> be a good thing and not all items will be accessed by every user. I've
>>> tried adding IFRAMEs but I just can't get it to go to 100% height
>>> without causing the page to have scrollbars. I've tried editing the
>>> min-height of not(.toolbar), etc and even height and in some cases on
>>> my high res it looks nice, but once I go to 1024x768 it causes
>>> scrollbars. It doesn't have to be IFRAMEs if there is some other way
>>> to do it, just as long as it can be the toolbar at the top, with the
>>> content filling the rest of the page (100%).
>>>
>>>
>>> Thanks!
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "iPhoneWebDev" group.
>>> To post to this group, send email to iphonewebdev@googlegroups.com.
>>> To unsubscribe from this group, send email to iphonewebdev+unsubscribe@*
>>> *googlegroups.com <iphonewebdev%2bunsubscr...@googlegroups.com>.
>>> For more options, visit this group at http://groups.google.com/**
>>> group/iphonewebdev?hl=en<http://groups.google.com/group/iphonewebdev?hl=en>
>>> .
>>>
>>>  
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "iPhoneWebDev" group.
>> To post to this group, send email to iphonewebdev@googlegroups.com.
>> To unsubscribe from this group, send email to iphonewebdev+unsubscribe@**
>> googlegroups.com <iphonewebdev%2bunsubscr...@googlegroups.com>.
>> For more options, visit this group at http://groups.google.com/**
>> group/iphonewebdev?hl=en<http://groups.google.com/group/iphonewebdev?hl=en>
>> .
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/iphonewebdev/-/kwg6sl_oPQsJ.
To post to this group, send email to iphonewebdev@googlegroups.com.
To unsubscribe from this group, send email to 
iphonewebdev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en.

Reply via email to