This might seem trivial, but I\'m new to JS. I have this piece of code:
alert(elementAction); var argumentsBegin = elementAction.search(\"(\"); var argum
elementAction.search("\\(");
search is regular expression, ( is keyword in regular expression. you have to escape ( to \(, \( in string is "\\("
(
\(
"\\("