I need to strip out all text before and including "(" and all text after and including ")" in this variable.
var this_href = $(this).attr('href');
The above code produces this...
javascript:change_option('SELECT___100E___7',21);
However it can produce any text of any length within the parenthesis.
A Regex solution is OK.
So in this case I want to end up with this.
'SELECT___100E___7',21