<script type="text/javascript" src="http://xy.com/something.js"></script>
in my php/html file. It includes the whole something.js file. In this file, there are lines like with "document.write..." that are writing some text on my page.
Benim php belgede bu js dosyadan dahil bir dize yerine mümkün mü? (Ben buna erişim yok) js dosyasını değiştiremezsiniz.
More information:
.
: Js dosyası gibi görünüyor
...
var msg = '';
msg +='<b>mystring1</b><br/><i>mystring2</i>';
document.write(msg);
...
My php file includes the js file. I wanna change the mystring2 to myteststring in PHP. Is this possible? How? Thanks.