This is an easy one I'm sure but I can't find anything searching or on Google.
If I use
document.getElementById(someId).className += " whateverClass";
or
$('#').addClass('whateverClass');
How can I prove this in the console? (So that I know that step is working correctly)
Easy enough in jQuery by using .hasClass():
You can execute this in your code or in the browser console itself.