RE: [Cosmosdex] : Redux Error Train
01-07-2019, 05:36 AM
(This post was last modified: 01-07-2019, 05:40 AM by Yaveker.)
(01-07-2019, 05:10 AM)Fuade Wrote: »https://cosmosdex.com/cosmosdex/lore/legendary/b-69
The pronoun button isn't working. Verified with other users
I looked into it and for some reason jquery isn't loading before this script runs, possibly because it's taking to long for jquery to download. Anyways I fixed this issue by simply moving the code up into the jquery download script section.
Eg instead of
Code:
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script> $(document).ready(function(){
$(".changetext").click(function(){
$(".hide1").toggle();
$(".hide2").toggle();
});});
</script>
Code:
<script src="./B-69 _ Cosmosdex_files/jquery-ui.min.js.download"></script>
<script> $(document).ready(function(){
$(".changetext").click(function(){
$(".hide1").toggle();
$(".hide2").toggle();
});});
</script>