Skip to content

Instantly share code, notes, and snippets.

@mkelley33
Created November 28, 2012 01:20
Show Gist options
  • Save mkelley33/4158408 to your computer and use it in GitHub Desktop.
Save mkelley33/4158408 to your computer and use it in GitHub Desktop.
Clear form with CoffeeScript
(($) ->
$.fn.clearForm = ->
@find(":input").each ->
switch @type
when "password", "select-multiple"
, "select-one"
, "text"
, "textarea"
$(this).val ""
when "radio", "checkbox"
@checked = false
) jQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment