I have a div with an ID
this jquery selector works $(\"[id^=\'updates-pane
this jquery selector works
$(\"[id^=\'updates-pane
You can also use the id attribute selector, like:
$('[id="updates-pane-user.followed_on"]')
because jQuery will treat the attribute as a string, rather than a jQuery class selector.