Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function couponGiver(){
  2.   document.getElementById('logoId').removeEventListener('onmouseover', couponGiver, false);
  3.   var cDiv = document.createElement('div');
  4.   cDiv.id = 'writeDiv'
  5.   cDiv.className = 'coupon';
  6.   document.getElementsByTagName('footer')[0].appendChild(cDiv);
  7.   document.getElementById('writeDiv').innerHTML = "Code:C456";
  8.  
  9. }
  10.  
  11. function tableSearch(){
  12.     var input, filter, table, tr, td, i;
  13.     input = document.getElementById('userInput');
  14.     filter = input.value;
  15.     table = document.getElementById('tableSearch');
  16.     tr = table.getElementsByTagName('tr');
  17.  
  18.     for(i = 0; i < tr.lenght; i++){
  19.         td = tr[i].getElementsByTagName("td")[0];
  20.         if(td){
  21.             if(td.innerHTML.toUpperCase().indexOf(filter) > -1){
  22.                 tr[i].style.display = " ";
  23.             } else{
  24.                 tr[i].style.display ="none";
  25.             }
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement