Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to turn a String into a JavaScript function call?
To turn a string into a JavaScript function call, try to run the following code
Example
<html>
<body>
<script>
function myFunction(argument) {
alert('My function ' + argument);
}
functionName = 'myFunction';
window[functionName]('is working.');
</script>
</body>
</html> Advertisements
