call a function using requirejs
html, requirejs
Solution
I managed to find a solution for the question by passing the function into the html code. It's not very elegant, but it works.
index.html
<button onclick = "doSomeStuff(4,2);">DoStuff</button>
<script>
require(['stuff.min'], function(myStuff){
function doSomeStuff(a,b) {
myStuff.doStuff(a,b);
}
});
</script>
stuff.js
define(["jquery"], function ($) {
function doStuff(a,b) {
//does some stuff
}
return {doStuff:doStuff};
});
Problem
How do I call a function using requirejs? It's an overly simple question, but surprisingly enough no tutorial or example has been able to help me so far. This is the code in my html file. ``` ... <script src = "stuff.js"></script> <button onclick="doStuff(4, 2)";>DoStuff</button> ... ``` This is my require js. ``` define(["jquery"], function ($) { function doStuff(a, b) { //does some stuff } }); ``` Why does this not work? I get ReferenceError: doStuff is not defined