Jump to content

Pop Ups help


salino2835

Recommended Posts

You have to make sure you change the id ref of the other pop-up container, and make sure the anchor link href matches

<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"><script src="http://code.jquery.com/jquery-1.11.3.min.js"></script><script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script></head><body><div data-role="page">  <div data-role="header">    <h1>Welcome To My Homepage</h1>  </div>  <div id="pageone" data-role="main" class="ui-content">    <p>Click on the image to enlarge it.</p>    <p>Notice that we have added a "back button" in the top right corner.</p>    <a href="#myPopup" data-rel="popup" data-position-to="window">    <img src="skaret.jpg" alt="Skaret View" style="width:200px;"></a>    <a href="#myPopup2" data-rel="popup" data-position-to="window">    <img src="skaret.jpg" alt="Skaret View" style="width:200px;"></a>    <div data-role="popup" id="myPopup">      <p>This is my picture!</p>       <a href="#pageone" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn-a ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a><img src="skaret.jpg" style="width:800px;height:400px;" alt="Skaret View">    </div>    <div data-role="popup" id="myPopup2">      <p>This is my 2nd picture!</p>       <a href="#pageone" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn-a ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a><img src="skaret.jpg" style="width:800px;height:400px;" alt="Skaret View">    </div>  </div>  <div data-role="footer">    <h1>Footer Text</h1>  </div></div> </body></html>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...