hello,
I have 3 different drop down menues and I want to have access to this menues with
JQuery.
Like this:
jQuery('#options_XX_text').on('input', function(e)
{
var data1 = jQuery("#options_XX_text").val();
})
XX is an int number
How do I get now the right number for "options_XX_text" ?
thanks for helping