Posts by Mateus Spadacio • 51 points
3 posts
-
1
votes1
answer140
viewsA: Scroll bar at the end of the div
Look, try changing the line $("#mensagens").animate({scrollTop: variavel},3000); for this $('#mensagens').animate({ 'scrollTop' : $(document).height() }, 1);
jqueryanswered Mateus Spadacio 51 -
1
votes1
answer44
viewsA: Problem showing popup when sending forms
Your logic is not wrong, but I believe this is a loading problem where the id $('#modal-success') was not recognized. $(document).ready(function(){ $(#botao).click( function(){…
-
0
votes1
answer180
viewsA: Routes - Angularjs
So you can create restricted areas with Angularjs you can choose to use cookies. Use the property sessionStorage to store the user’s session id or other data identifying the session of the user.…