I do a lot of pens on CodePen and I tend to use the same pattern building a prototype as a pen.
For instance I use classnames as handles when inputting and outputting data to the test/prototype. For instance I would have an element with the classname source and one with output. So I always create var named $source and one called $output.
Why not write a function to automatically add global vars named "$" + classname?
This gist is that function! It will search for elements with classes on them. Run through them and create global vars named "$"+classname, which it then will assign the value of "$(classname)". So after this function have been executed (defineVarsFromClassNames()) in your global (window) scope you can expect to find vars with jQuery reference to the element.
Neat idea! For the fun of it, I tried to see if I could turn that into an ES2015 one-liner that doesn't need jQuery, and instead populates an "all" object. Nearly got it. ;-)