Friends,
I have a problem, now I want to access an element with jquery li, unfortunately these li elements have the ids as follows:
<li id='abc-2\textbox'>...</li>
<li id='xop-2\listbox'>...</li>
I tried to get the item by the following expressions, but none work.
$('#abc-2\textbox')
$('#abc-2\\textbox')
$('#abc-2//\textbox')
$('#abc-2\\\textbox')
I guess the problem is the \ character, Could someone help me?
$(‘#abc-2\\\\textbox’) (use 4 slashes)