Is there a tutorial somewhere that would teach me how to take this 
javascript code

<!DOCTYPE html>
<html>
<body>

<p>Click the button to convert the string to lowercase letters.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var str = "Hello World!";
    var res = str.toLowerCase();
    document.getElementById("demo").innerHTML = res;
}
</script>

</body>
</html>

and use it in a macro?


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/39c1ac14-4076-4d70-80a8-e85fbb0c8efa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to