Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>With very less information from OP, I will give a try.</p> <p>Your code should look like this (considering you have a folder <code>js</code> in your root folder, with all the javascripts. </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;!-- Add your CSS file here --&gt; &lt;!-- Add your Java Script files here --&gt; &lt;script type="text/javascript" src="js/jquery-1.7.1.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="js/jquery-ui-sliderAccess.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(function(){ $( "#datepicker" ).datetimepicker(); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="text" name="datepicker" id="datepicker" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>For javascript to work, all the components required by the javascript function should be pre-loaded on client browser. </p> <p>Inside <code>head</code> tag the <strong>suggested order</strong> is</p> <ol> <li><strong>CSS</strong>: Include CSS first, so that browser gets it first, and render website correctly.</li> <li><strong>JavaScripts</strong>: Once it is render properly, javascripts should be loaded so that user can interact with the website.</li> <li><strong>Inline Javascript</strong> : (if any, considering you are using some components from the pre-loaded libraries.</li> </ol> <p>Hope this works for you.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload