This is my code:
$(document).ready(function(){
var valid_url = new RegExp('http://[www\.]?youtube.com/watch\?v=[a-zA-Z0-9_-]*', '');
$('a').each(function(){
// Check if it's a valid Youtube URL
var link = $(this).attr('href');
if( valid_url.test( link ) ){
alert( "valid" );
}
});
});
But it doesn't seem to match the Youtube URL's correctly. I think it's the way I'm trying to match it using regex. I've tested the regex itself multiple ways and it is indeed correct, but I'm not familiar with using regex with Javascript so might be using it incorrectly.
Any help is appreciated, thanks.