Firstly, $(this) is jQuery syntax. Unless your web page has jQuery loaded, any code that assumes that $ exists is going to fail. Launch, by itself, does not load jQuery. I myself try to avoid using any code that assumes the presence of a 3rd-party library like jQuery, relying on native JavaScript al...