Skip to content

Instantly share code, notes, and snippets.

@yorzi
Created June 12, 2012 01:19
Show Gist options
  • Save yorzi/2913789 to your computer and use it in GitHub Desktop.
Save yorzi/2913789 to your computer and use it in GitHub Desktop.
limit_chosen_count.coffee
$(".chzn").change ->
el = $(@)
if el.val()? == false or el.val().length < 3
exists = 0
exists = el.val().length if el.val()?
$(".metro-stations-counter").html("You can add <strong>#{2 - exists}</strong> more metro station(s) to this organization.</span>")
else
el.val(el.val().slice(0, el.val().length - 1))
el.trigger("liszt:updated")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment