Very new to JS here. When I write PHP I have no problem assigning variables inside a function, but inside a JavaScript function it doesn't work. Why?
example:
function hello() {
var animal = 'Dog';
document.write(animal);
}
|
Very new to JS here. When I write PHP I have no problem assigning variables inside a function, but inside a JavaScript function it doesn't work. Why? example:
|
|||||||
|
|
Are you calling the |
|||
|
|
put this snippet inside your function to check if your function is being called
If a message box appears, your code should work, but if it does not then the function is not being executed, post some html coding also. |
|||
|
|