Posts by Fabrício Wickert • 1 point
2 posts
-
0
votes4
answers687
viewsA: Disable html element with jquery
To disable the element and no longer allow it to be clicked, can use CSS Class Pointer-Events: None; a { opacity : 0.5; /* Só para dar um efeito */ pointer-events: none; } or if you only want by…
-
-3
votes4
answers6072
viewsA: How to write code as an example, without running?
I fell here first because I had the same doubt "how to display php on the page without running". It turned out that I did not like the solutions proposed here and I was doing tests on my own and the…