Skip to content

Instantly share code, notes, and snippets.

@anareyna
anareyna / gist:6337283
Created August 26, 2013 00:58
functions
var Ani = ( function() {
var st = {
txtName : '.txtName',
btnSearch : '#btnSearch'
},
dom = {},
catchDom = function() {
dom.txtName = $(st.txtName);
dom.btnSearch = $(st.btnSearch);
},