[jQuery] setting a dynamic variable
Hello guys,
I have found a script that works fine for me but I'd like to make it
reusable but I have an issue with that.
On the script I have something like
function my_function() {
var $container = $('#panel .container');
...
}
and I'd like to pass the id (panel in this case) as a parameter like
in the example below:
function my_function(panel_id) {
var $container = $('#--- .container');
...
}
How can I achieve my goal?
Thanks and have a nice day.
Sig