vote up 0 vote down star

When i use DatePicker, jQuery's UI plugin, in an existing .aspx page i get errors that "$("#datepicker").datepicker is not a function". However, when I copy and paste the same code that creates and uses the DatePicker to an html file that's also in the same directory as the aspx page, it works flawlessly. This leads me to assume that there are some JS files in the aspx page that's preventing the DatePicker or maybe jQuery's UI JS files to load properly.

Can anyone confirm my beliefs or provide any tips on finding the culprit that's interfering with jQuery's UI plugins?

flag

53% accept rate
Can you post the relevant jQuery code please – Russ Cam Jul 31 at 14:03
How are you including the datepicker plugin on the page - is it in a ScriptManagerProxy or are you writing it directly into the page? Are you sure that it is being loaded? If so, what other plugins are you including? Are you sure you've included ui.core.js? – James Kolpack Jul 31 at 14:07
1  
I found the problem. I wish i have found this solution yesterday as oppose to an 1hr after posting this question. The JS code that I've written references jQuery and jQuery UI javascript file acted as a module. Its parent also references jQuery at the bottom of the body tag (so 2 references to jQuery). Since jQuery is reinitialized after jQuery UI, jQuery UI is wiped out as a plugin, hence why my code could not find the DatePicker plugin. – burnt1ce Jul 31 at 15:16

5 Answers

vote up 1 vote down check

This error usually appears when you're missing a file from the jQuery UI set.

Double-check that you have all the files, the jQuery UI files as well as the CSS and images, and that they're in the correctly linked file/directory location on your server.

link|flag
This answer is closest to the solution that i've posted. – burnt1ce Jul 31 at 15:17
You could also post your comment as your own answer and accept it some time later. – Crises of Identity Jul 31 at 15:19
vote up 1 vote down

Go for the obvious first: Are you referencing well the jquery-ui.js file?

Try using the network tab of firebug to find if it is loaded, or the Information\View javascript code of the Web Developer Toolbar.

link|flag
vote up 2 vote down

Have you tried using Firebug to 1) determine that there are no Javascript errors and 2) that the #datepicker element exists on the page?

Most likely there is an error prior to the datepicker call that is preventing the datepicker call from executing.

link|flag
vote up 1 vote down

If you think that there is a conflict you can use jQuery.noConflict() in your code. Details are in the docs.

REFERENCING MAGIC - SHORTCUTS FOR JQUERY

If you don't like typing the full "jQuery" all the time, there are some alternative shortcuts:

Reassign jQuery to another shortcut var $j = jQuery; (This might be the best approach if you wish to use different libraries) Use the following technique, which allows you to use $ inside of a block of code without permanently overwriting $:

(function($) { /* some code that uses $ */ })(jQuery)

Note: If you use this technique, you will not be able to use Prototype methods inside this capsuled function that expect $ to be Prototype's $, so you're making a choice to use only jQuery in that block. Use the argument to the DOM ready event:

jQuery(function($) { /*some code that uses $ */ });

Note: Again, inside that block you can't use Prototype methods

Thats from the end of the docs and might be useful to you

link|flag
vote up 1 vote down

If there is another library that is using the $ variable, you can do this:

var $j = jQuery.noConflict();
$j("#datepicker").datepicker();

Also make sure your javascript includes are in the correct order so the jquery core library is defined before the jquery.ui. I've had that cause issues.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.