Skip to main content
m
m
Linha 8: Linha 8:
  
 
/** Solution for sticking footer at bottom in short pages **/
 
/** Solution for sticking footer at bottom in short pages **/
$(document).ready(function() {
+
$(document).ready(function myFunction() {
  var docHeight = $(window).height();
+
  var footerHeight = $('#main-footer').height();
+
  var footerTop = $('#main-footer').position().top + footerHeight;
+
  if (footerTop < docHeight) {
+
    $('#main-footer').css('margin-top', 10+ (docHeight - footerTop) + 'px');
+
  }
+
  });
+
 
+
/** to create a filter table with JavaScript **/
+
function myFunction() {
+
 
   // Declare variables
 
   // Declare variables
 
   var input, filter, table, tr, td, i;
 
   var input, filter, table, tr, td, i;

Revisão das 01h11min de 10 de outubro de 2016

/** Códigos Javascript aqui colocados serão carregados por todos aqueles que acederem à WikiSporting.com **/

/** Tynt Tracking **/
if(document.location.protocol=='http:'){
 var Tynt=Tynt||[];Tynt.push('czzJj69Myr4ly6acwqm_6l');Tynt.i={"ap":"Ler mais:"};
 (function(){var s=document.createElement('script');s.async="async";s.type="text/javascript";s.src='http://tcr.tynt.com/ti.js';var h=document.getElementsByTagName('script')[0];h.parentNode.insertBefore(s,h);})();
}

/** Solution for sticking footer at bottom in short pages **/
$(document).ready(function myFunction() {
  // Declare variables
  var input, filter, table, tr, td, i;
  input = document.getElementById("myInput");
  filter = input.value.toUpperCase();
  table = document.getElementById("myTable");
  tr = table.getElementsByTagName("tr");

  // Loop through all table rows, and hide those who don't match the search query
  for (i = 0; i < tr.length; i++) {
    td = tr[i].getElementsByTagName("td")[0];
    if (td) {
      if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
        tr[i].style.display = "";
      } else {
        tr[i].style.display = "none";
      }
    }
  }
};