I suspect this is ridiculously simple, but I can't figure it out.
We have some simple code that we've written using jQuery, but I suspect it would work fine with xui, and since this is a mobile app saving the bits to download and the time to load all of the extra js in jQuery would be fantastic.
jQuery of courses uses $('') as the select, but xui uses x$(''). Is there a technique I can use, so that I can just swap the js libraries and have it work?
Is it as simple as: var $ = x$;
at the start of my script?