How to call out javascript function which is assigned to a variable? -


function test1 (){     //do } 

to call out function above, need write test1();

var check_day = function($select_d){     //do }; 

how can call out function assigned variable?

the same way–call function using parens ():

check_day(the_parameter); 

Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

javascript - Preserving URL fragment through CAS sign-on -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -