Script i am using shown below.Date picker is showing on screen but it is applying to all input fields.( WHat should i change to get only for a particular input field. I tried with id rangeA but still it is applying to all fields.
<script type="text/javascript">
$(function()
{
$('input').daterangepicker({arrows:true});
});
</script>
<form>
<li>
<label for="name">Your Name:</label>
<input type="text" size="40" id="name" />
</li>
<li>
<label for="date">Select Date</label>
<input type="text" value="4/23/99" id="rangeA" />
</li>
</form>