I am trying to use Timepicker - its an addon for jquery http://trentrichardson.com/examples/timepicker/ this addon requires sliders to work.
for some reason i just cannot get sliders to work - i managed to get normal jquery ui datapicker to work but cannot make slider work.
here is my current code.
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-1.8.2.js"></script>
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-ui-1.9.1.custom.js"></script>
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery.ui.slider.js"></script>
I've checked the address and they work.
By the way i also tried without including the jquery.ui.slider.js.
I do the following in bottom of page:
<div id="slider"></div>
<script>var $j = jQuery.noConflict();
$j(document).ready(function() {
$j(function() {
$j( "#slider" ).slider();
});
});
</script>
Thanks in advanced
jQuery.noConflict(); var $j = jQuery; $j(document).ready(function() { ... });– suicidal.banana Nov 22 '12 at 15:02