/    Sign up×
Community /Pin to ProfileBookmark

firebug: lists.create is not a function

Firebug barks “lists.create is not a function” when I click on the link below:

[CODE]
var lists = function(){
var create = function(component){
var component = component.href.substring(component.href.lastIndexOf(‘#’) + 1); //sites
return component;
}
var setDefaults = function(component){
var parameter = {};
switch(component){
case “sites”:
parameter = {
order: ‘site_num’,
per_page: ’20’,
url: ‘/sites’
}
}
return parameter;
}
var criteria = {
drop_filter: {
check: function(value){
if(value)
return
},
msg: “Loading…”
},
search_filter: {
check: function(value){
if(value)
return
},
msg: “Loading…”
}

}
return {
//not currently used
addQuery: function(name, query){queryArr[name] = query;},
extra: function(){}
}
}

$(‘#dashboard a’).click(function(){
var currentComponent = lists.create(this);
var custom = lists.setDefaults(currentComponent);
initializeTable(custom);
});

var initializeTable = function(custom){
var defaults = {};
var query_string = $.extend(defaults, custom);
alert(query_string);
/*
$.each(query_string, function(key,value){

})

var queryArr = [];
*/

}
[/CODE]

Thanks for response.

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@JohnMerlinoauthorSep 30.2010 — I figured it out. You have to convert the functions into closures using return keyword and then call the function immediately ()() before you try to use it as a private function.
×

Success!

Help @JohnMerlino spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...