I have added a query string param to my index with the intention that it can show toasts for errors and such. Though I'm struggling to make it show when the page loads.
I'm using the $('#toast').toast('show');
method. It works when I assign it as a button's onclick, but not directly in a script tag or in miscellaneous JQuery events, including $(document).ready() and $(window).load().
Figured it out, jQuery isn't loaded before the end of the page.