Re: Mobile Friendly needed
Posted by
mark on
URL: https://support.nabble.com/Mobile-Friendly-needed-tp7580261p7582132.html
I've discovered that the following works in a TiddlyWiki. So, maybe this will provide a way to get things working. Let me know if you know a way.
This works:
<html>
<script src="somescript.js"></script>
</html>
This works:
<script>alert("It works");</script>
<html>
<h1>This works, too.</h1>
</html>
This doesn't work:
<html>
<script>alert("It doesn't work!");</script>
</html>This doesn't work:
<script>
function myFunc()
{
alert("It doesn't work!");
};
</script>
<html>
<button onclick="myFunc()">Doesn't work.</button>
</html>
So, the Nabble embed code doesn't work, either. I have no idea why.