Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* por edi472 ;PPP */
- d=(document);
- c=d.createElement('script');
- c.src='http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
- c.type='text/javascript';
- c.onload = function() {
- $(window).keydown(function(e) {
- if(e.keyCode == 73 && e.altKey) {
- ver_infracoes(prompt('Página',''));
- return false;
- };
- });
- ver_infracoes(prompt('Página:',''));
- };
- function ver_infracoes (pagina) {
- if(pagina.match(/[0-9]/gi)){
- var url = location.href + '?tab=infractions&page='+pagina;
- $.ajax({
- url: '' + url,
- cache:false,
- error:function(){
- alert('Opa... ocorreu um erro! D:');
- },
- success:function(dr){
- if(!dr.match(/view-infractions/gi))return alert('Ocorreu um erro');
- $('.selected_view_section').html(dr.split('<div id="view-infractions" class="subsection block">')[1].split('<div class="underblock"></div>')[0]);
- return [];
- }
- });
- };
- };
- d.getElementsByTagName('head')[0].appendChild(c);
Advertisement
Add Comment
Please, Sign In to add comment