I made this script in jquery
I want to implement it in this site
http://avocat.dac-proiect.ro/wp/
I use Wordpress and my div is in footer.php
This is footer.php
<?php
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div id="top"></div>
<div id="mid"></div>
<?php get_sidebar( 'footer' ); ?>
<div class="site-info">
<?php do_action( 'twentyfourteen_credits' ); ?>
Codoban.com.All rights reserved
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
How can I implement it in this file so that it is functional?
Thanks in advance!