changing "^back to top" text

Professional Jomal template designed to be easily adaptable to all kinds of business
GK User
Sun Oct 09, 2011 4:01 pm
Hi, all! :)

Please help me, don't understand where i can do this.
Which file is this?

Code: Select all
<script type="text/javascript">
         jQuery(document).ready(function(){
            jQuery(function () {
            var scrollDiv = document.createElement("div");
            jQuery(scrollDiv).attr("id", "toTop").html("^ Back To Top").appendTo("body");   
            jQuery(window).scroll(function () {
                  if (jQuery(this).scrollTop() != 0) {
                     jQuery("#toTop").fadeIn();
                  } else {
                     jQuery("#toTop").fadeOut();
                  }
               });
               jQuery("#toTop").click(function () {
                  jQuery("body,html").animate({
                     scrollTop: 0
                  },
                  800);
               });
            });
         });
         </script>
         
         <script type="text/javascript">
         jQuery(document).ready(function(){jQuery("img").lazyload({
          effect : "fadeIn"
          });
      });
      </script>
User avatar
Fresh Boarder

cron