I\'m trying to target page-wide links that do not start with a \'#\' and do not include in-line javascript but I\'m having problems figuring out how to structure the selecto
Try using
$('a:not([href*=javascript]):not([href^=#])') ...