hello
i have DatePick in my website
if the page is related with masterpage the DatePick dosen't work
and if the page dosen't related with masterpage it works fine
code at masterpage:
<head id="Head1" runat="server">
<link rel="stylesheet" type="text/css" media="all" href="jsDatePick_ltr.min.css" />
<script type="text/javascript" src="jsDatePick.min.1.3.js"></script>
<script type="text/javascript">
window.onload = function(){
new JsDatePick({
useMode:2,
target: "ctl00_ContentPlaceHolder1_inputField",
dateFormat: "%d/%m/%Y"
});
new JsDatePick({
useMode:2,
target: "ctl0 ...
Go to the complete details ...