I've got this code so far, which isn't working:
$('.passName').click(function(){
var schoolName = "18734";
var link = $(this).attr('href');
var newLink = link + schoolName;
$(this).attr('href') = newLink;
});
Do the following:
$(this).attr('href', newLink);