Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In JS I have

$("#index").on({
  click : function() { // do something useful with $(this)....}
},"li.superclass");

How I can describe this with CoffeeScript?

share|improve this question

3 Answers

It's almost the same:

$("#index").on click: ->
  alert ("hi")
, "li.superclass"
share|improve this answer
Too many brackets! Get rid of the superfluous cruft from your code ,~) – Billy Moon Sep 20 '12 at 13:30
I don't think you can avoid the brackets around the selector, otherwise the .on tries to operate on the string of the selector itself. – Billy Moon Sep 20 '12 at 13:34
I would probably do it in two statements, caching the jquery object (usually a good idea anyway): $index = $ "#index"; $index.on click: -> alert "hi", "li.superclass" – Billy Moon Sep 20 '12 at 13:35
@BillyMoon: Ah, yes, you're absolutely right. – João Silva Sep 20 '12 at 13:37

mybe this is you want:

$("#index").on 
    click:->
        alert "hi"
    "li.superclass"

but i think this is more clear:

events = 
    "click":->
        alert "hi"
$("#index").on events, "li.superclass"
share|improve this answer

Just have to put the jQuery code after $ ->

Check out this article, would be helpful Using jQuery with CoffeeScript

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.