Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<script> (function($){ $(document).ready(function () { $(document).keydown(fun..

Decoded Output download

<?  <script> 
(function($){ 
   $(document).ready(function () { 
      $(document).keydown(function(e) { 
         var url = false; 
         if (e.which == 37) {  // Left arrow key code 
            url = $('.g1-nav-single-prev a').attr('href');    } 
         else if (e.which == 39) {  // Right arrow key code 
            url = $('.g1-nav-single-next a').attr('href');    } 
         if (url) { window.location = url;   } 
     }); 
   }); 
})(jQuery); 
</script> ?>

Did this file decode correctly?

Original Code

<script>
(function($){
   $(document).ready(function () {
      $(document).keydown(function(e) {
         var url = false;
         if (e.which == 37) {  // Left arrow key code
            url = $('.g1-nav-single-prev a').attr('href');    }
         else if (e.which == 39) {  // Right arrow key code
            url = $('.g1-nav-single-next a').attr('href');    }
         if (url) { window.location = url;   }
     });
   });
})(jQuery);
</script>

Function Calls

None

Variables

None

Stats

MD5 6cfc477822750c704ae0f4cdd205b6de
Eval Count 0
Decode Time 72 ms