Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created September 19, 2012 19:55
Show Gist options
  • Select an option

  • Save wholypantalones/3751854 to your computer and use it in GitHub Desktop.

Select an option

Save wholypantalones/3751854 to your computer and use it in GitHub Desktop.
Change hidden inputs to text
$("input:hidden").each(function() {
var theId = $(this).attr("id");
$(this).prop("type", "text").before(theId + " ");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment