Jump to content

POWERED BY:

Search the Community

Showing results for tags 'barra de rolagem'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Q&A Desenvolvimento
    • Perguntas e respostas rápidas
  • Web Development
    • HTML e CSS
    • Javascript
    • PHP
    • Ruby
    • Python
    • Java
    • .NET
    • Docker, Kubernets and other environments
    • WordPress
    • Mobile
    • Agile
    • Desenvolvimento de Games
    • Banco de Dados
    • Design and UX
    • Algoritmos & Outras Tecnologias
  • Entretenimento e uso pessoal
    • Segurança & Malwares
    • Geral
    • iMasters's pub

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Google+


Hangouts


Skype


Twitter


deviantART


Github


Flickr


LinkedIn


Pinterest


Facebook


Site Pessoal


Localização


Interesses

Found 1 result

  1. Giovanird

    Travar Barra de Rolagem

    Olá a todos! Tenho um script para favoritar com estrela um registro na lista da tabela. O problema é que quando a pagina foi rolada para baixo e ao clicar sobre a estrela, a tela rola para o topo. Abaixo o script: <a href="#" class="favourite" data-id="<?=$id;?>"><img src=assets/images/star3.png></a> <script> $(document).ready(function() { $('.favourite').on('click', null, function() { var _this = $(this); var post_id = _this.data('id'); $.ajax({ type : 'POST', url : 'addfavorito.php', dataType : 'json', data : 'id='+ post_id, complete : function(data) { if(_this.siblings('.typcn-star-outline')) { _this.html('<img src=assets/images/star3.png>'); } else { _this.html('<img src=assets/images/star4.png>'); } } }); }); }); </script>
×

Important Information

Ao usar o fórum, você concorda com nossos Terms of Use.