I am trying to set the value of HTML file using a javascript of another HTML file.
for example :
html1.html
js1.js // this is for html1.html
html2.html // inside this html file, I wanted to set the value and innerHTML of 1 element using js1.js
for example element:
<input id="cID" name="cID" type="text" class="required form-control">
IS there anyway to achieve it??
Thank you and Regards,
jsfile forhtml2