Maybe I'm missing something so sorry if that's the case but does anyone know if it's possible in jQuery to use the parameter from a function in a variable. For example:
function number(x){
variable_number_x++;
}
And in that code replace x with the function parameter. So for example number(2) would output that it adds 1 to the variable_number_2 variable. Any idea's? Thanks in advance!