Posts by Alexandre Peluchi • 102 points
6 posts
-
2
votes1
answer30
viewsQ: Javascript window.Navigator returning wrong data?
I’m studying Javascript, and I came across something strange, I put this command on the Chrome console alert(navigator.appCodeName);, which returns the browser name, but always returns, "Mozilla",…
javascriptasked Alexandre Peluchi 102 -
2
votes1
answer54
viewsQ: Strict Mode in Javascript works in frameworks?
I am studying Javascript and came across Strict Mode (use strict). I wonder if it works with the frameworks Javascript if I put this command in a file .js, or if it only works with pure Javascript?…
javascriptasked Alexandre Peluchi 102 -
1
votes1
answer1020
viewsA: Problem sending files to bitBucket
Following what the mgibsonbr indicated, a quick and simple way to turn off the SSL Certificate verification would be by this command git config --global http.sslVerify false, I hope it helps you.…
-
1
votes1
answer361
viewsA: function in Graphics. h
I was having the same problem, even installing the graphics.h correctly, the code was compiled and a few seconds after it appeared, the console screen stopped responding out of nowhere, I discovered…
-
1
votes3
answers9781
viewsA: How to make a "Submit" in javascript?
I made some modifications to your code, I used pure Javascript like you. var x; var a, b; function olosko() { a = document.getElementById("tabela").rows[0].cells[0]; b =…
-
1
votes1
answer248
viewsA: I can’t make the character of Nightmare disappear after he’s dead
Try to destroy the object Zombunny. Put an if(if Zombunny dies). I don’t know if you have a life script on the object. Destroy(this.gameobject); This command destroy makes the object disappear if…