RegEx to create URL whitelist?

ChoigSarfrara

New Member
Working on a script to target external site URL's and give class to trigger dialog. Need to exclude (White list) certain HREF. Exception for mailto and tel as well as internal URL's works fine but trying to add specific URL name doesn't work. Any suggestions? Is there a better method?\[code\]jQuery(document).ready(function ($) {$.expr[":"].external = function (a) { return !a.href.match(/^mailto\:/) && !a.href.match(/^tel\:/) && !a.href.match(/http\/\/\:\mail\.google\.com/) && a.hostname != location.hostname};$("a:external").addClass("ext_link");\[/code\]});
 
Back
Top