Posts by Lucas Junior • 49 points
4 posts
-
0
votes1
answer37
viewsA: How to use fullscreenchange in React?
The element that should receive the Listening is the element that received the requestFullScreen, which in this case is not the document, but a specific element. Adding the Listening in the element…
-
1
votes1
answer37
viewsQ: How to use fullscreenchange in React?
I need to perform an action when the user leaves full screen browser mode (by pressing ESC). I have verified that the event called is the fullscreenchange but I couldn’t get it to work on React. I’m…
-
1
votes1
answer199
viewsQ: How to access data sent by PUT (ajax) in php?
I am creating an application in REST format in which my front-end requests a PUT (By ajax) to the back-end. No request I am sending the new information for update, but I am not able to access this…
-
1
votes1
answer33
viewsQ: How to make a function run after another? JS (Jquery)
I have the following functions: Grab server data by ajax and save to an object array: function carregaPesquisaTabela(){ controlLoading(); $.ajax({ url: "header.php", type: "POST", dataType:"json",…