SyntaxFix
Write A Post
Hire A Developer
Questions
It doesn't because the href value is not sign_up.It is #sign_up. Try like below, You need to add "#" to indicate the id of the href value.
sign_up
#sign_up
$('a[href="#sign_up"]').click(function(){ alert('Sign new href executed.'); });
DEMO: http://jsfiddle.net/pnGbP/