i want to select "a" tags that :
   1.it's href dos not contain "javascript:"
   2.its onclick attribute dos not contain "return false"
   3. and it's target is "not _blank"

i wrote this rules with jQuery like this 2 codes but it's not working
true, where is my problem ?!

1.
  $("A :not('a...@onclick*=\"return false\"]' , a...@href^=\"javascript:
\"] , a...@target=\"_blank\"] )")



2.
$("A").not("a...@target='_blank']").not("a...@onclick*='return
false']").not("a...@href^='javascript:']")



thanks before

Reply via email to