I ran into a cryptic error message from deep in the bowels of jQuery code.
Uncaught Error: Syntax error, unrecognized expression: <>
I'm sure the problem has nothing to do with jQuery itself. It's somewhere in my application, which is built in Backbone + Marionette.
I had to wade through hundreds of lines of code, but this test case demonstrates the problem in its simplest possible form. (You can go to the Mariontte.js web site and type this code in the JavaScript console.
var V = Marionette.CollectionView.extend({tagName: ''});
v = new V();
What am I doing wrong?