Adding this as a CSS selector in settings:
div.node a[@href^=http://]:not([@href*=DOMAIN.COM)
does not trigger popups.
Other selectors work though... Can someone confirm?
Adding this as a CSS selector in settings:
div.node a[@href^=http://]:not([@href*=DOMAIN.COM)
does not trigger popups.
Other selectors work though... Can someone confirm?
Comments
Comment #1
George2 commenteddiv.node a[href^=http://]:not([href*=example.com])
works in the 6 version, i'd imagine would work in 5 too.
the @ was deprecated in jquery 1.2 so that may be your problem, plus you are missing a ] after .COM
Comment #2
George2 commentedComment #3
spiffyd commentedThanks George2!
Perhaps the example in the settings should be changed to reflect this deprecation...
Comment #4
Gurpartap Singh commentedDrupal 5 does not have jQuery 1.2, and the default package supports the example selector. However, instructions can be added in case the user upgrades to jQuery 1.2+.
Comment #5
Eugene Fidelin commented