Im trying some advanced html tricks but Im getting this error when I run my game due to one of my html elements has the following section of script was part of its html body:
<script src="jquery-3.7.1.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script>
$(document).ready(function()
{
$("#Tabs1").tabs(
{
show: false,
hide: false,
event: 'click',
collapsible: false
});
});
The jquery source files are in the Files directory but I also tried them in scripts but I still get the same error in the console.
Any ideas? Maybe Jquery isn't supported?
Im actually trying to create a tabbed interface but when I bring it across all the styling is lost.
Thanks