I'm trying to implement a timepickr element into my website, however it seems that the element will work ok in one section of a page, but not in another.
I reference the appropriate css files…
<link rel="Stylesheet" media="screen" href="ui.timepickr.css" />
<link rel="stylesheet" media="screen" href="jquery.timepickr.css" type="text/css" />
Yanı sıra jQuery dosyaları ...
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.ui.all.js"></script>
<script type="text/javascript" src="js/jquery.timepickr.js"></script>
Bu dosyaların yol doğrudur. Ben sayfanın baş yazılı jQuery işlevi var ...
<script type="text/javascript">
$(function(){
$('#timestart').timepickr();
});
</script>
Ve sonra, sayfanın ana gövdesinde, ben timepickr işleve başvuran, nesne oluşturmak ...
<input id='timestart' type='text' value='09:00' />
Bu çalışıyor. Ben aynı sayfada daha sonra bu aynı kodu kullanabilirsiniz Ancak, timepickr işlevselliği tekme değil
The area where I want the functionality to work is in another DIV section, the contents of which come from an Ajax call made in the page.
This is the only jQuery item I have in the page.
The page itelf only has this one timepickr reference.