Posts by klisóstom • 26 points
2 posts
- 
		0 votes3 answers91 viewsA: How to call a function through a button using querySelector?In your example, the error was the letter 'v', uppercase. When you add the parentheses '()' to the function name, you are invoking it 'alert()'. When you do not add them, if you are… javascriptanswered klisóstom 26
- 
		1 votes2 answers1510 viewsA: "No 'Access-Control-Allow-Origin' header is present" cakephpHello! The server does not allow making requests to another domain other than the current one. You must give permission to do so by adding the following header: <?php…