Posts by Gabriel Balladares • 56 points
5 posts
-
1
votes2
answers90
viewsA: Jquery - Is there a way to connect buttons?
I’m not sure I understand your question, but from what I’ve seen you want to fire a function from one button when clicked on another, correct? I’d use the jQuery trigger -…
-
0
votes2
answers439
viewsA: Angularjs - POST an array of objects (JSON data) to the php page
Try using $http.post() and see the return, remember to instantiate an error callback in your password, to make sure that the problem is not at the service level, in your case, in PHP. // Exemplo…
-
0
votes4
answers1986
viewsA: Where does JWT keep the tokens?
Hello, just pass in the Header of your request. How is using the name 'x-access-token'. Using jQuery: $.ajax({ url : 'api/route', headers: { 'x-access-token' : token }); After your authentication…
-
1
votes2
answers1000
viewsA: Different layout on other computers?
Hello, the problem is not something a plugin or a linah of code will solve. The problem is in your HTML architecture and CSS settings. The most recommended to do is to follow the structure of some…
-
2
votes1
answer1927
viewsA: Animations of input text and Divs when scrolling the page
Hello, animations can be done in CSS and triggers in scrolling event fired using Javascript. There are libraries ready specifically for this: For the animations:…