I am trying to make some edits to a site for a client of mine. This is the selector I am trying.
This is the site I am trying to edit. http://www.lederne.dk/kampagner/faglig_organisation/forside.htm
jQuery("DIV#ctl01_uiBreadCrumbServerDiv + DIV > DIV:first-child + DIV > DIV:first-child > DIV:first-child")
This does not work in the default settings on the page in IE9. However, if I now change the document mode to IE9(originally it is IE7), the selector works.
I have done quite some search to see what might be wrong, but nothing seems to help.
You can use this code to add jquery to this page
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
I think
will solve your problem