+ 2
Atrribute Changes
HOW TO CHANGE THE SCRIPT ATTRIBUTE VALUE TO ANOTHER WITH HELP OF JAVASCRIPT ANY BODY WHO CAN HELP ME . SHOW WITH THE HELP OF CODE IN CODE PLAYGROUND
4 Respostas
+ 9
Jitender Kashyap to add a script in html you can use this 👇👇👇
document.body.appendChild(document.createElement('script')).src='myjs.js';
+ 9
Jitender Kashyap Rather than changing it is easy to add a new script using this 👇
document.body.appendChild(document.createElement('script')).src='myjs.js';
Changing src value of existing script can cause error. So better add a new script.
+ 8
Jitender Kashyap Which script attribute ???
src attribute ??
+ 2
I want to change the value of src
help me