Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6576737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:32:59+00:00 2026-05-25T15:32:59+00:00

I am trying to get the jquery plugins timpickr and multidatespicker to work on

  • 0

I am trying to get the jquery plugins timpickr and multidatespicker to work on the same page. Unfortunately I’m having issues getting them to work together. They are both located here:

http://code.google.com/p/jquery-utils/wiki/UiTimepickr

http://multidatespickr.sourceforge.net/

This is my current code:

Test

<link type="text/css" href="css/jquery-ui-1.8.16.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-v1.4.4.js"></script>

<!-- Start Timepickr -->
    <link rel="Stylesheet" media="screen" href="css/ui.timepickr.css" />
    <script type="text/javascript" src="js/jquery.timepickr.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){ 
            $('#inTime').timepickr({convention: 12}); 
            $('#outTime').timepickr({convention: 12}); 
        }); 
    </script>
<!-- END Timepickr-->

<!-- POPUP CALENDAR --> 
    <!--<script type="text/javascript" src="js/jquery-v1.4.4.js"></script>-->
    <script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui.multidatespicker.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $('#date').multiDatesPicker({numberOfMonths: 2});
        });
    </script>
<!-- END POPUP CALENDAR-->

    Date:  <input type="text" name="date" id="date">    
    <br>
    Time In:  <input type="text" name="inTime" id="inTime">
    <br>
    Time Out:  <input type="text" name="outTime" id="outTime">

Currently timepickr works. If you add in “script type=”text/javascript” src=”js/jquery-v1.4.4.js”” right after where “!–Popup Calendar–” starts, the calendar will work but then timepickr does not. Does anyone have any suggestions as to what I’m doing wrong?

Thanks!
-Brandon

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:33:00+00:00Added an answer on May 25, 2026 at 3:33 pm

    Alright, I’ve been taking a serious look at the plugins and I know what your problem is.
    You’re missing a couple of scripts needed for the plugins to work.
    Here is a solution where both plugins work, I tested it myself.
    You can see in the source tags where I got the modules from, they actually came with the plugin packages.

    <!-- Stylesheets -->
    <link rel="Stylesheet" media="screen" href="/ui-timepickr/dist/themes/default/ui.core.css" />
    <link rel="Stylesheet" media="screen" href="/ui-timepickr/dist/themes/default/ui.timepickr.css" />
    <link rel="stylesheet" type="text/css" href="/multidates/css/mdp.css">
    
    <!-- latest JQuery module -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    
    <!-- JQuery UI -->
    <script type="text/javascript" src="/multidates/js/jquery.ui.core.js"></script>
    <script type="text/javascript" src="/multidates/js/jquery.ui.datepicker.js"></script>
    <!-- Spanish dates -->
    <script type="text/javascript" src="/multidates/js/jquery.ui.datepicker-es.js"></script>
    
    <!-- timepickr -->
    <script type="text/javascript" src="/ui-timepickr/page/jquery.ui.all.js"></script>
    <script type="text/javascript" src="/ui-timepickr/page/jquery.utils.js"></script>
    <script type="text/javascript" src="/ui-timepickr/page/jquery.strings.js"></script>
    <script type="text/javascript" src="/ui-timepickr/page/jquery.anchorHandler.js"></script>
    <script type="text/javascript" src="/ui-timepickr/src/ui.dropslide.js"></script>
    <script type="text/javascript" src="/ui-timepickr/src/ui.timepickr.js"></script>
    
    <!-- datepicker -->
    <script type="text/javascript" src="/multidates/jquery-ui.multidatespicker.js"></script>
    
    <!-- execution code -->
    <script type="text/javascript">
            $(document).ready(function(){
                //timepickr
                $('#inTime').timepickr();
                $('#outTime').timepickr();
    
                //popup calendar
                $('#date').multiDatesPicker();
            });
    </script>
    
    Date:  <input type="text" name="date" id="date">    
    <br>
    Time In:  <input type="text" name="inTime" id="inTime">
    <br>
    Time Out:  <input type="text" name="outTime" id="outTime">
    

    I hope that solves it for you. To make it easier, put all the necessary modules under the same directory, so you don’t accidentally add a duplicate of the same script, IE, one directory for everything that has to do with JQuery, and another directory for plugins. To learn more about the plugins, I suggest you read their documentation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been trying to get jquery.autocomplete (http://docs.jquery.com/Plugins/autocomplete) to work for the last few
I'm having a problem trying to get working those 2 plugins together: Localisation (for
I'm trying to mesh together two Jquery mobile plugins. Both are using the same
I am trying to get jquery validate to work on multiple fields. Reason being
I am trying to get simple jQuery to execute on my Content page with
I'm trying to get the jQuery UI sortable plugin to work and I've created
I'm trying to use this tooltip plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ . I can't seem to get
I am trying to get data binding and tmpls - the jquery plugins to
I'm in the process of trying to get the jQuery plugin, Uploadify , to
I am trying to get this awesome JQuery plugin working with SQL Server. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.