Janusz Chudzynski
Janusz Chudzynski

Reputation: 2710

JQTouch loading external html page

Do we need to have all pages inside divs in one html page? In case of my website I would need to create a huge file to accomplish that.

Upvotes: 1

Views: 680

Answers (1)

David
David

Reputation: 2954

Short answer is that no, you do not. In your link tags, instead of typing:

<a id="#linkTo">Link!</a>

You would type

<a href="link/to/content">Link!</a>

Your content would have to be an html snippet instead of a fully baked web page. You can look at the demos to see how this is done.

Upvotes: 1

Related Questions