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 -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -