I have a typical javascript function with some parameters
my_function = function(content, options) { action }
if I call the function as such :
my_function (options)
the argument "options" is passed as "content"
how do i go around this so I can either have both arguments passed or just one ? thank you