Posts by Oracio • 186 points
4 posts
-
1
votes1
answer58
viewsQ: Get responsible for error
There is the possibility of knowing which element in the HTML is responsible for the error causing action in Javascript? code: <button onclick="a(this);">GO!</button> <script>…
-
4
votes1
answer104
viewsA: Animation with Requestanimationframe - Javascript
I see no need to use both javascript when it is possible to use styles for these tasks. var acao = function(e) { if (!e.target.nextElementSibling.style.height)…
javascriptanswered Oracio 186 -
7
votes4
answers62720
views -
5
votes1
answer201
viewsQ: Error when deploying lambda EJB project using glassfish 4
I have in my project two java files First.java. package br.com.bom; import javax.ejb.Stateless; @Stateless public class Primeiro { } Second java. package br.com.bom; import javax.ejb.Stateless;…