Hello,
I need some JQuery selector help...
My HTML is
<div id="Manager"><span>LastName, FirstName (UK)</span></div>
<span id=ctl00_PlaceHolderMain_g_4118aa1d_2690_4da8_b2b2_dc1943e73968_LineManager/>
I need to select the text from the div Manager and copy that into the span which contains the text LineManager.
I have the selector for the span which contains the text 'LineManager'
$("span[id*='LineManager']")
Thanks,