This might be a stupid question, but I'm trying to pass in a string of settings I've constructed in the following format:
"setting1" : "value", "setting2" : "value", "setting3" : "value"
The above is saved to a string named args. Nothing special, but I'm wanting to pass it in as an argument to a function.
$('#element').functionName({ args });
I'm not sure what I'm missed here.... Thanks!
args? What are you getting stuck on?