The jQuery Validate plugin can compare two fields using the ID like this:
confirm_email: {
                required: true,
                email: true,
                equalTo: "#email"
            },
But I need to reference the field NAME. What do I substitute for “#”?