I have two html files, index.html
and f.html
f.html
<body>
<script src="a.js"></script>
</body>
I want to change the src
of f.html
‘s script
tag from a.js
to b.js
using index.html
How can I do that?
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I have two html files, index.html
and f.html
f.html
<body>
<script src="a.js"></script>
</body>
I want to change the src
of f.html
‘s script
tag from a.js
to b.js
using index.html
How can I do that?