Here's a common scenario for ASP.NET developers. You have an ASP.NET server-side control and you want to use a jQuery selector to target it and make a client-side change to it.
A very simple way to do this is to use the following notation:
$('[id$=divId]').tooltip({ position: "center right" });