I\'ve been using jQuery UI with Bootstrap and I seem to run into a problem that I haven\'t had before. I\'m not sure what has changed; I\'ve tried setting back different ver
put a selector.
<script> $("#formID #duplicatedId").datepicker({language: 'he'});
</script>
FormID: Id of the form that contains input.
duplicatedId: input element's Id.
Might be two input box having same class without different id and for that you are trying for date picker. If it is there give two different id it will work.