Ben böyle bir js işlevi çağırmak için benim php kullanıyorum:
<?php
$chk=1;
if($chk==1)
{
echo '<script>testing();</script>';
}
?>
ve benim js gibi görünüyor:
function testing()
{
document.getElementById("mainbody").innerHTML="This is my first JavaScript!";
}
Js harici bir js dosyasıdır.
Benim html gibi görünüyor:
<html>
<head>
<script src="qotw.js"></script>
</head>
<body>
<div id="mainbody"></div>
</body>
</html>
but this is not working. What am i doing wrong over here? Please tell me if you know.
Best Zeeshan