Skip to content

Instantly share code, notes, and snippets.

@zeffii
Created September 4, 2015 12:47
Show Gist options
  • Save zeffii/545ff8202ed2de1801cc to your computer and use it in GitHub Desktop.
Save zeffii/545ff8202ed2de1801cc to your computer and use it in GitHub Desktop.
###
code comments..
function listFilter(header, list) {
// create and add the filter form to the header
var form = $("<form>").attr({"class":"filterform","action":"#"}),
input = $("<input>").attr({"class":"filterinput","type":"text"});
$(form).append(input).appendTo(header);
}
###
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment