In JS I have
$("#index").on({
click : function() { // do something useful with $(this)....}
},"li.superclass");
How I can describe this with CoffeeScript?
|
In JS I have
How I can describe this with CoffeeScript? |
|||
|
|
|
It's almost the same:
|
|||||||||
|
|
mybe this is you want:
but i think this is more clear:
|
|||
|
|
|
Just have to put the jQuery code after $ -> Check out this article, would be helpful Using jQuery with CoffeeScript |
||||
|
|