Posts by Gustavo Bessa • 168 points
14 posts
-
0
votes2
answers764
viewsA: Automatic click along with full screen
On the occasion of using one <button> uses this event in your HTML: <body onClick="toggleFullScreen();"> This means that if the user clicks on any part of the screen the Fullscreen mode…
-
1
votes2
answers112
viewsA: Why can’t I send the "+" character via post in a simple HTML form?
You’re probably using some pair of quotes in the wrong place, your php must be getting the + as addition and not as a character.
-
0
votes1
answer77
viewsA: Variable with JS / Html
That’s it ? <html> <head> <title>Empresa</title> <link href='http://fonts.googleapis.com/css?family=Raleway:500,700,900,400,300' rel='stylesheet' type='text/css'>…
-
0
votes1
answer327
viewsQ: Change the properties of an SVG object with JS
I’m learning about graphic creation SVG for HTML and would like to know how I can change the properties of an object SVG (line, cicle, rect) through JS for example, by clicking on a button it change…
-
2
votes1
answer2043
viewsQ: Event when user closed tab/page
I need to know how perform a function the same instant I close the page, for example I want to send an alert to the user as soon as it leaves Searching here on the site I found this code:…
-
2
votes1
answer1853
viewsQ: How to send data with JS? without updating page
I am trying to create an HTML game and I need a way to send data to a database (MYSQL) and I would like to know how to send data from the site to a server without the page updating. In case anyone…
-
0
votes3
answers805
viewsA: Delete records without updating page
You can do it using a iframe (Hidden) which updates when you delete the record ... and make it refresh without having to refresh the page completely.
-
1
votes2
answers49
viewsA: Auto-Complete with database values in input text type
Hello, some time ago I had the same doubt ... but I did not want to use libraries to do this kind of research, after a while on the Internet I found the library W3.js of the site w3schools, and I…
-
0
votes1
answer924
viewsQ: How to make an alert in the browser, using Node.js
I am beginner in Node.js, I know that the main function of Node is not this, but I want to learn a little more about such an event, another doubt I also have is whether I can use common javascript…
-
1
votes3
answers17426
viewsA: How to pass javascript variable value to php?
I have been through this doubt and after a long time thinking I found an extremely simple solution of pass a js or HTML variable to PHP. I basically created a form that when the input…
-
1
votes1
answer1813
viewsQ: HTML/CSS Notification Basics
I’d like to know how include notifications on my sites, as basic as possible. I searched a little about it but I didn’t get any results ... I hope you can help. Beyond that doubt... I wondered if to…
-
-3
votes1
answer84
viewsQ: offline PHP test
I would like to know how to test my PHP files offline
phpasked Gustavo Bessa 168 -
4
votes1
answer10990
viewsA: Change text of a div after clicking the button
<html> <body> <p id="paragrafo">Clique no botão para mudar o texto</p> <button onclick="funcao()">Clique aqui</button> <script> function funcao() {…
-
0
votes1
answer986
viewsQ: Button to add new fields in a form, with pure JS
I want to create a form with a button +, create more fields for the user to send as many forms as they want. I tried this code, but to no avail: var coluna = 1; function plus() {…