I need complete code that have two jquery date picker for two text-boxes.

Look here: http://jqueryui.com/demos/datepicker/

They have written the code for you. You need a copy of jquery and the jquery UI. See here for how to get them: http://jqueryui.com/docs/Getting_Started

<!DOCTYPE html>
<html>
<head>
<link type="text/css" href="css/themename/jquery-ui-1.8.16.custom.css" rel="Stylesheet" />	
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>

<script>
	$(function() {
		$( "#datepicker1, #datepicker2" ).datepicker();
	});
</script>
</head>

<body>
<div class="demo">

<p>Date1: <input type="text" id="datepicker1"></p>
<p>Date2: <input type="text" id="datepicker2"></p>

</div>
</body>
</html>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.