Posts by Klaider • 2,509 points
154 posts
-
6
votes3
answers488
viewsQ: What is the 'do' statement’s function?
What the 'do' alone waits and makes? do ... end
-
2
votes1
answer87
viewsQ: How to return object relative object?
I’m needing to return a previous object from an object, that’s because I’m using this test function. Behold: NodeList.prototype.style={ set background(a){ DefStyle("background",a,this)//aqui },set…
javascriptasked Klaider 2,509 -
6
votes3
answers825
viewsA: Make the page refresh and the message appear next
A simple way is using $_GET with the message (encoding it to the URL) on the page. Example: "http://pagina.com/diretorio?msg=Hello2F%Welcome" Then echo into $_GET["msg"] if it exists, wherever you…
-
2
votes4
answers8168
viewsA: Is it possible to make an IF with javascript directly in html?
I don’t quite understand what you want. Do you want to use variables made in PHP by JS? Without using PHP in the middle? So I think you want to use Ajax. Basically I’ve done an old function to make…