• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Gesior jQuery

raf

Active Member
Joined
Jan 10, 2011
Messages
261
Reaction score
38
Location
Warsaw, PL
Does anyone else know how to implement jQuery to work in gesior2012 ? Whenever i'm trying to use default way to use jQuery - it doesn't work, same for noconflict.
 
Last edited:
i cant for some reason


latestnews.php - was trying to add countdown clock

976376b29b079743eef87d7c54931071.gif

Jquery made
 
so how did you add jquery, could you show me how you initialize it ?

Works just fine for me, in layout.php

PHP:
......
        <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
        <script type="text/javascript">
            $( ".BoxContent" ).html( "Next Step..." )
        </script>
    </body>
</html>
 
Works just fine for me, in layout.php

PHP:
......
        <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
        <script type="text/javascript">
            $( ".BoxContent" ).html( "Next Step..." )
        </script>
    </body>
</html>
I didn't think about lib version, maybe that's the cause. Will try :)
 
Back
Top