Are there other options instead of using the 'innerHTML' property in CoffeeScript?
In JavaScript, you typically write something like this:
document.getElementById('element').innerHTML = "blah_blah"
Is there a different approach to achieve the same result in CoffeeScript? I have attempted the following:
element = $('element')
element.html "blah_blah"