Hi all! I'm new to JQuery so please bare with me and forgive my ignorance as this maybe a very basic question!
I'm 'trying' to develop an app in Dreamweaver and currently have some nice pages that you can swipe through. No problem so far! But, in the middle somewhere I have a page that has two dialog 'pop-up' links on it that work ok! Still no problem! ...BUT, when I try to swipe past that page, it swipes to the two 'dialog pages' also, which I don't want. I'd like it to swipe from article to article and ignore the dialogs pages (set up with 'data-role="page"', is this right?!?) in-between unless there specifically selected.
Does that make sense? Or have I confused you as much as i'm confused already? Some code examples below if that helps!
Again, please forgive me for the basic questions, i'm trying to learn!
Many thanks in advance!
<div data-role="page" id="Article1" data-theme="a">
<div data-role="content">
<a href="#Article1_Dialog1" data-rel="dialog"></a>
<a href="#Article1_Dialog2" data-rel="dialog"></a>
</div>
</div>
<div data-role="page" id="Article1_Dialog1" data-theme="a">
<div data-role="content">
Dialog Content1 here...
</div>
</div>
<div data-role="page" id="Article1_Dialog2" data-theme="a">
<div data-role="content">
Dialog Content2 here...
</div>
</div>
<div data-role="page" id="Article2" data-theme="a">
<div data-role="content">
Content here...
</div>
</div>
<div data-role="page" id="Article3" data-theme="a">
<div data-role="content">
Content here...
</div>
</div>