call function with parameters

call function with parameters

  1.   $('#'+mobilecheckdiv).load(url,data )  ; // populates data in this div -> works fine
  2.     $('#'+mobilecheckdiv).load(url,data,remark )  ; //  calls function remark after completing loading the output in div 'mobilecheckdiv' -> works fine

        In this case I am caling a function remark without paramter


However

  1.   $('#'+mobilecheckdiv).load(url,data,remark(chkdivname,n) )  ; //  Call function remark(chkdiv,n) i.e. a function with parameters is executed before loading the div with Data 

How can I call

  1. $('#'+mobilecheckdiv).load(url,data,remark(chkdivname,n )  ;// fucntion with parameter

that will give same effect as

  1. $('#'+mobilecheckdiv).load(url,data,remark )  ;