Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Timepicker jquery not working (has no method curCSS)

My head is aching for already a day because of this error.

The jQuery object is actually just the init constructor 'enhanced'
    return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'curCSS' 

my html is:

<input class="field2" type="text" name="time" placeholder="Time" value ="<?php echo $this-   >input->post('time'); ?>" id = "timepicker"/></div>

im currently using code igniter and im also using the date picker. i think there's a conflict on the included js libraries, but still, I can't debug it.

EDIT: These are the included js

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

<script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>

<script type="text/javascript" src="<?php echo base_url() ?>js_front/jquery-1.8.3.js"></script>

<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.core.js"></script>

<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.widget.js"></script>

<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.datepicker.js"></script>

and here is the assigning of the timepicker into an input tag type text

$(function() {
$( "#timepicker" ).timepicker();

});

like image 654
Orvyl Avatar asked Dec 06 '12 03:12

Orvyl


1 Answers

What version of jQuery are you using? curCSS is deprecated and removed in 1.8. Either use an older version of jQuery or replace "curCSS" with "css" in your timepicker code.

http://bugs.jquery.com/ticket/11921

like image 157
dtbarne Avatar answered Sep 30 '22 15:09

dtbarne