jQuery UI " $("#datepicker").datepicker is not a function"

asp.netJavascriptJqueryDatepicker

asp.net Problem Overview


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?

asp.net Solutions


Solution 1 - asp.net

I struggled with a similar problem for hours. It then turned out that jQuery was included twice, once by the program that I was adding a jQuery function to and once by our in-house debugger.

Solution 2 - asp.net

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.

Solution 3 - asp.net

jQuery “ $(”#datepicker“).datepicker is not a function”

I have fixed the issue by placing the below three files in the body section of the form at the end.

  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type="text/javascript"></script>
    <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="Stylesheet" type="text/css" />
    

Solution 4 - asp.net

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.

Solution 5 - asp.net

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

> 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 [1]: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

Solution 6 - asp.net

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.

Solution 7 - asp.net

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.

Solution 8 - asp.net

I know that this post is quite old, but for reference I fixed this issue by updating the version of datepicker

It is worth trying that too to avoid hours of debugging.

https://cdnjs.com/libraries/bootstrap-datepicker

Solution 9 - asp.net

I just had this issue, and moving the JS references and code towards the bottom of the page before the </body> tag fixed it for me.

Solution 10 - asp.net

Also check the permissions for the directory you download the files into. For some reason when I downloaded this, by default it was saved in a folder with no access allowed! It took forever to figure out that was the problem, but I just had to change the permission for the directory and it's contents - setting it so EVERYONE = READ ONLY. Works great now.

Solution 11 - asp.net

I ran into this problem recently - the issue was that I had included the jQuery UI files in the head tag, but the Telerik library I was using included jQuery at the bottom of the body tag (thus apparently re-initializing jQuery and unloading the UI plugins previously loaded).

The solution was to find out where jQuery was actually being included, and including the jQuery UI scripts after that.

Solution 12 - asp.net

For me it was just necessary to remove the "defer" property from the declaration of my script

Solution 13 - asp.net

I just ran into a similar issue. When I changed my script reference from self-closing tags (ie, <script src=".." />) to empty nodes (ie, <script src=".."></script>) my errors went away and I could suddenly reference the jQuery UI functions.

At the time, I didn't realize this was just a brain-fart of me not closing it properly to begin with. (I'm posting this simply on the chance that anyone else coming across the thread is having a similar issue.)

Solution 14 - asp.net

Some file no load before you call.

For example: Your code:

<%= javascript_include_tag "distpicker.min" %>
<%= javascript_include_tag "distpicker.data.min" %>
    

Change to this:

<%= javascript_include_tag "distpicker.data.min" %>
<%= javascript_include_tag "distpicker.min" %>

Solution 15 - asp.net

I could fix this problem removing the jquery bundle on the _Layout.cshtml

Header

    <script src="~/Scripts/jquery-1.10.2.js"></script>
    <script src="~/Scripts/kendo/2015.2.902/kendo.all.min.js"></script>
    ...

Footer

    @Scripts.Render("~/bundles/jquery")
    @Scripts.Render("~/bundles/bootstrap")
    @RenderSection("scripts", required: false)

Change footer to

    @Scripts.Render("~/bundles/bootstrap")
    @RenderSection("scripts", required: false)

Solution 16 - asp.net

Have you tried using $("#<%= txtDateElementId.ClientID %>").datepicker(); instead of $("#txtDateElementId").datepicker(); when selecting an element by ID using JQuery.

Solution 17 - asp.net

Old question - newer version of .NET (4.5.6) - same issue - new answer

Using NuGet

Make sure you have the following installed via NuGet:

  • jQuery
  • AspNet.ScriptManager.jQuery
  • jQuery.UI.Combined
  • AspNet.ScriptManager.jQuery.UI.Combined

Install them from here [ Tools > NuGet Package Manager > Manage NuGet Packages for Solution ]

Then, jquery and jquery.ui.combined should be added to your ScriptManager in Site.Master. Will look something like this:

    <asp:ScriptManager runat="server">
        <Scripts>
            <%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%>
            <%--Framework Scripts--%>
            <asp:ScriptReference Name="MsAjaxBundle" />
            <asp:ScriptReference Name="jquery" />
            <asp:ScriptReference Name="jquery.ui.combined" />
            <asp:ScriptReference Name="bootstrap" />
            <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
            <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
            <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
            <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
            <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
            <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
            <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
            <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
            <asp:ScriptReference Name="WebFormsBundle" />
            <%--Site Scripts--%>
        </Scripts>
    </asp:ScriptManager>

This solved my same issue. Thank you.

Solution 18 - asp.net

(”#datepicker“).datepicker is not a function

I also ran into this problem a few days ago. It occurs probably because of having the jquery link more than once in the file. Try searching the whole file for that duplicate content.

It will look somewhat like this:

<script src="https://code.jquery.com/jquery-1.12.1.js"></script>

Keep one in the <head></head> tag and remove all the rest. This will fix the issue.

Solution 19 - asp.net

For those using Laravel, the default app.js has a defer in its declaration.
DELETE IT

enter image description here

Solution 20 - asp.net

referencing jQuery twice might cuase the issue.

Solution 21 - asp.net

In my case, it was solved by changing the import order of the following scripts: Before (Not work):

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionburnt1ceView Question on Stackoverflow
Solution 1 - asp.netEugene van der MerweView Answer on Stackoverflow
Solution 2 - asp.netMacAnthonyView Answer on Stackoverflow
Solution 3 - asp.netKrishnaView Answer on Stackoverflow
Solution 4 - asp.netrandomView Answer on Stackoverflow
Solution 5 - asp.netAutomatedTesterView Answer on Stackoverflow
Solution 6 - asp.neteKek0View Answer on Stackoverflow
Solution 7 - asp.net1kevgriffView Answer on Stackoverflow
Solution 8 - asp.netYannickvView Answer on Stackoverflow
Solution 9 - asp.netBanjerView Answer on Stackoverflow
Solution 10 - asp.netMatthew FriesView Answer on Stackoverflow
Solution 11 - asp.netuser15486View Answer on Stackoverflow
Solution 12 - asp.netuser3799115View Answer on Stackoverflow
Solution 13 - asp.netPeter BernierView Answer on Stackoverflow
Solution 14 - asp.netDavid tsangView Answer on Stackoverflow
Solution 15 - asp.netjaimeninoView Answer on Stackoverflow
Solution 16 - asp.netEmil FilipView Answer on Stackoverflow
Solution 17 - asp.netTaylor BrownView Answer on Stackoverflow
Solution 18 - asp.netJOSE C SView Answer on Stackoverflow
Solution 19 - asp.netLeftyView Answer on Stackoverflow
Solution 20 - asp.netuser123456View Answer on Stackoverflow
Solution 21 - asp.netMatías W.View Answer on Stackoverflow