I would like to know how, I call a function from an x.js file, on a page x.html x.php either.
Example:
x.js file:
function myFunction(img){
// Faz algo
}
Index.php file:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
myFunction("algo.jpg"); // <-- como fazer uma função de um arquivo js, aceitar eu chamar ela em um arquivo index.php?
</script>
</head>
<body>
<img src="img/algo.jpg" alt="">
<script src="x.js"></script>
</body>
</html>