In order to include one .js file in another .js file I tried writing the following in a .js file.
var head= document.getElementsByTagName('head')[0];
var script= document.createElement('script');
script.type= 'text/javascript';
script.src= 'helper.js';
head.appendChild(script);
I got the error: ReferenceError: document is not defined
Then I wrote:
<script type="text/javascript" charset="utf-8">
$(documuent).ready(function () { var editChange = $('td').replaceWith('<td id = "@Html.ValueFor(x => x.name)" >'); });
</script>
on the top of it, but got the error: SyntaxError: Unexpected token <
Problem is that here no browser is involved. This .js file is working along QML and getting compiled with qmake.
What is the syntax for this?