Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery.min.js ineterferring with datepicker
    primarykey
    data
    text
    <p>I have some code that has a jquery datepicker and also some code for pagination. Now my problem is when I add the following:</p> <pre><code>&lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js'&gt; </code></pre> <p>My date picker does not work.</p> <p>If I comment the above my pagination code does not work. here is my jquery code code:</p> <pre><code>&lt;link rel='stylesheet' href='http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css' /&gt;" puts "&lt;script src='http://code.jquery.com/jquery-1.8.2.js'&gt;&lt;/script&gt;" puts "&lt;script src='http://code.jquery.com/ui/1.9.0/jquery-ui.js'&gt;&lt;/script&gt;" puts "&lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js'&gt;&lt;/script&gt;" puts { &lt;script type="text/javascript"&gt; jQuery(function() { jQuery( '#startdatepicker' ).datepicker(); }); &lt;/script&gt; } puts { &lt;script type="text/javascript"&gt; jQuery(function() { jQuery( '#enddatepicker' ).datepicker(); }); &lt;/script&gt; } puts { &lt;script type="text/javascript"&gt; jQuery(document).ready(function() { function Data_Load() { jQuery("#loading").fadeIn(900,0); #jQuery("#loading").html('&lt;img src="bigLoader.gif" /&gt;'); } function Hide_Load() { jQuery("#loading").fadeOut('slow'); }; jQuery("#pagination li:first") .css({'color' : '#FF0084'}).css({'border' : 'none'}); Data_Load(); jQuery("#jcontent").load("nbonbs_log.cgi?page=1", Hide_Load()); jQuery("#pagination li").click(function(){ Data_Load(); jQuery("#pagination li") .css({'border' : 'solid #dddddd 1px'}) .css({'color' : '#0063DC'}); jQuery(this) .css({'color' : '#FF0084'}) .css({'border' : 'none'}); var pageNum = this.id; jQuery("#jcontent").load("nbonbs_log.cgi?page=" + pageNum, Hide_Load()); }); }); &lt;/script&gt; } </code></pre>
    singulars
    1. This table or related slice is empty.
    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. 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