Posts by Matheus Gonçalves • 76 points
5 posts
-
0
votes2
answers556
viewsA: Floating login and login query
Friend you can use the Jquery dialog. Below follows the link: http://jqueryui.com/dialog/#modal-form
-
0
votes1
answer169
viewsA: Change user data without it needing to login / Login
Friend, if you store the name in the session, you will have to change it too.
-
0
votes2
answers1245
viewsA: Insert CSV line break every N characters
Hello friend searching on the internet found this function: function wordwrap( str, width, brk, cut ) { brk = brk || '\n'; width = width || 75; cut = cut || false; if (!str) { return str; } var…
javascriptanswered Matheus Gonçalves 76 -
0
votes3
answers134
viewsA: "Undefined is not a Function" when calling "tabs"
Friend the problem is the path of the plugins, below this the correct <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css"> <script…
-
3
votes1
answer458
viewsA: Handle ajax request returned data with Jquery
If you are making the same request for the page you are, ajax when complete and return the data it will return all the content from the same screen, causing the content of your page to duplicate…