Hello guys, I am working on a simple html,css and JavaScript editor with a compiler.
I need help how to create file with JavaScript at a button click.
Something like this code
<! Doctype html>
<html>
<body>
<textarea Id="text">
Some codes here...
</textarea>
<button onclick="create">New File</button>
</body>
</html>
I will appreciate your ideas…