Advertisement
Guest User

HTML Jquery Issues

a guest
Aug 9th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 7.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.         <title>
  7.         </title>
  8.         <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
  9.         <link rel="stylesheet" href="css/themes/todo.css" />
  10.         <link rel="stylesheet" href="css/style.css" media="screen" type="text/css"/>
  11.         <link rel="stylesheet" href="css/page2.css" media="screen" type="text/css"/>
  12.     </head>
  13.     <body>
  14.         <!-- Home -->
  15.         <div data-role="page" id="Home" data-theme="a">
  16.             <div data-theme="a" data-role="header">
  17.                 <h3>
  18.                     ToDo List
  19.                 </h3>
  20.                 <a data-role="button" data-transition="fade" data-theme="a" href="#page1" data-icon="grid" data-iconpos="left" class="ui-btn-right">
  21.                 </a>
  22.                 <div data-role="navbar" data-iconpos="top">
  23.                     <ul>
  24.                         <li>
  25.                             <a href="#page1" data-theme="a" data-icon="">
  26.                                 One
  27.                             </a>
  28.                         </li>
  29.                         <li>
  30.                             <a href="#page1" data-theme="" data-icon="">
  31.                                 Two
  32.                             </a>
  33.                         </li>
  34.                         <li>
  35.                             <a href="#page1" data-theme="a" data-icon="">
  36.                                 Three
  37.                             </a>
  38.                         </li>
  39.                     </ul>
  40.                 </div>
  41.                 <a data-role="button" data-transition="fade" data-theme="a" href="#page1" data-icon="grid" data-iconpos="left" class="ui-btn-right">
  42.                     Menu
  43.                 </a>
  44.             </div><!-- /header -->
  45.                    
  46.             <div data-role="content" style="padding: 15px" data-theme="a">
  47.                 <p> Keeping track has never been easier!</p>
  48.                
  49.                 <a data-role="button" data-theme="a" data-icon="arrow-r" data-iconpos="left" href="#page2" />
  50.                     Start Here!
  51.                 </a>
  52.             </div>
  53.             <div data-theme="a" data-role="footer" data-position="fixed">
  54.                 <h3>
  55.                     ©2012<br /> Jon Roundy
  56.                 </h3>
  57.             </div>
  58.         </div>
  59.             </div><!-- /footer -->
  60. </div><!-- /home -->
  61.  
  62. <!-- Start of second page -->
  63. <div data-role="page" id="page2" data-theme="a">
  64.             <div data-theme="a" data-role="header">
  65.                 <h3>
  66.                     ToDo List
  67.                 </h3>
  68.                 <a data-role="button" data-transition="fade" href="index.html" data-icon="home" data-iconpos="left" class="ui-btn-left">
  69.                     Home
  70.                 </a>
  71.                 <a data-role="button" data-transition="fade" href="#page1" data-icon="grid" data-iconpos="left" class="ui-btn-right">
  72.                     Menu
  73.                 </a>
  74.                 <div data-role="navbar" data-iconpos="top">
  75.                     <ul>
  76.                         <li>
  77.                             <a href="#" id="clear" data-theme="" data-icon="delete">
  78.                                 Clear Data
  79.                             </a>
  80.                         </li>
  81.                         <li>
  82.                             <a href="#" id="displayLink" data-theme="" data-icon="info">
  83.                                 Display Data
  84.                             </a>
  85.                         </li>
  86.                     </ul>
  87.                 </div>
  88.                 <div data-role="fieldcontain">
  89.                     <fieldset data-role="controlgroup">
  90.                         <label for="searchinput1">
  91.                         </label>
  92.                         <input name="" id="searchinput1" placeholder="search here" value="" type="search" />
  93.                     </fieldset>
  94.                 </div>
  95.             </div>
  96.             <form action="#" method="post" id="taskForm">
  97.             <div data-role="content" style="padding: 15px" >
  98.                
  99.                 <h2>
  100.                     Task Info
  101.                 </h2>
  102.                 <h5 id="req">
  103.                     *Fields are required.
  104.                 </h5>
  105.                 <div data-role="fieldcontain" id="req" name="selectmenu1">
  106.                 <label for="textinput1">
  107.                             *Select Category:
  108.                         </label>
  109.                 </div>
  110.                 <div data-role="fieldcontain">
  111.                     <fieldset data-role="controlgroup" id="task">
  112.                         <label for="taskname">
  113.                             *Task Name:
  114.                         </label>
  115.                         <input name="" id="taskname" placeholder="e.g Project due soon!" value="" type="text" />
  116.                     </fieldset>
  117.                    
  118.                 </div>
  119.                 <div data-role="fieldcontain">
  120.                     <fieldset data-role="controlgroup" id="task">
  121.                         <label for="date">
  122.                             *Date:
  123.                         </label>
  124.                         <input name="" id="date" placeholder="Month/Day/Year" value="" type="date" />
  125.                     </fieldset>
  126.                 </div>
  127.                 <div data-role="fieldcontain">
  128.                     <fieldset data-role="controlgroup" id="task">
  129.                         <label for="time">
  130.                             *Time
  131.                         </label>
  132.                         <input name="" id="time" placeholder="12:00 PM" value="" type="time" />
  133.                     </fieldset>
  134.                 </div>
  135.                 <div data-role="fieldcontain">
  136.                     <fieldset data-role="controlgroup" data-type="vertical" id="task">
  137.                         <legend>
  138.                             Urgent!
  139.                         </legend>
  140.                         <input name="" id="checkbox1" type="checkbox" />
  141.                         <label for="checkbox1">
  142.                         </label>
  143.                     </fieldset>
  144.                 </div>
  145.                 <div data-role="fieldcontain">
  146.                     <fieldset data-role="controlgroup" id="task">
  147.                         <label for="slider1">
  148.                             Estimated time to complete ( In Hours)
  149.                         </label>
  150.                         <input name="slider" id="slider1" value="0" min="1" max="24" data-highlight="true" type="range" />
  151.                     </fieldset>
  152.                 </div>
  153.                 <div data-role="fieldcontain">
  154.                     <fieldset data-role="controlgroup" id="task">
  155.                         <label for="textbox">
  156.                             Notes:
  157.                         </label>
  158.                         <textarea  name="" id="textbox" placeholder="Enter notes here...">
  159.                         </textarea>
  160.                     </fieldset>
  161.                 </div>
  162.                  <input data-theme="a" data-icon="arrow-r" data-iconpos="left" value="Save Task" type="submit" id="submit" />
  163.             </div>
  164.             </form>
  165.             <div data-theme="a" data-role="footer" data-position="fixed">
  166.                 <h3>
  167.                     Footer
  168.                 </h3>
  169.             </div><!-- /footer -->
  170.         </div><!-- /page -->
  171.         <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
  172.         <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
  173.         <script src="js/json.js" type="text/javascript"></script>
  174.         <script src="js/main.js" type="text/javascript"></script>
  175.         <script src="js/page2.js" type="text/javascript"></script>
  176.  
  177.        
  178.  
  179.     </body>
  180. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement