jquery datepicker problem in include page in php -


i use following "datepicker.php" page jquery datepicker given below :

    <!doctype html>     <html>      <head>       <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>       <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>       <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>       <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>       <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script> </script>   <script>     $(function() {         $( "#datepicker" ).datepicker();     });   </script> </head> <body style="font-size:62.5%;">   <input type="text" id="datepicker" /> </body> </html> 

it working single page when use page page using include('datepicker.php') method datepicker not working. how can solve this?

thanks in advanced.

because function used 1 page if use datepicker on page define function on page.


Comments

Popular posts from this blog

400 Bad Request on Apache/PHP AddHandler wrapper -

Add email recipient to all new Trac tickets -

php - Change action and image src url's with jQuery -