Yeah.... I hit F12 I get Yakuake. Everyone needs some dropdown multi-pane/multi-tab terminal emulator.
But opening the panel you suggest in my browser still doesn't display for me such. But there again I don't just allow anything to execute. In fact I allow nothing to execute, without good cause. Especially in a browser.
I've attempted to open in other browsers(actually an IDE, but meh) and managed to obtain the same precise error(line 424) - looking at the other usage of ".select2" in that file (https://asgardia.space/assets/js/front.4334921a5ce5.js - which doesn't match any of the native files in select2.github.io, suggesting made or edited by "staff") then
$('#idsorting, #idcontestin, #idstatusin, #idstatus, #id_contest').select2();
is of visually different syntax to, say,
$('#id_gender').select2({
width: 'resolve',
minimumResultsForSearch: -1
});
and
$('.profile-better-select,.better-select').select2({
width: 'resolve'
});
or
/*$('#id_country_of_residence').select2({
width: 'resolve'
});*/
Suggesting accurate syntax should of been: $('#idsorting, #idcontestin, #idstatusin, #idstatus, #id_contest').select2({}); and there should possibly be something specified in them curly brackets, too. But as previously mentioned - it's not as if I've a clue what I'm doing with JS.