I have the jQuery corner plugin applied to a class like so:
$(".corner").corner()
Works great until I refresh my screen with Ajax. I'm trying to use the new .on() function to apply it so that elements with that class always have rounded corners. So I tried this (CoffeeScript):
$("body").on "load", ".corner", ->
$(this).corner()
Fail. Tried several variations of it. All failures. It can't be this hard, what am I doing wrong?