Posts by Marcio Andre • 31 points
4 posts
-
0
votes1
answer23
viewsA: $("body"). delegate in Plain javascript
The problem has been solved, the implementation has been thus: document.addEventListener('click', function (event) { if (event.target.matches('.in-range'))…
javascriptanswered Marcio Andre 31 -
0
votes1
answer23
viewsQ: $("body"). delegate in Plain javascript
I’m implementing a class calendar events, but when I click the button to go to the next month or earlier, the div events of the selected day of the click event no longer work. If I use the…
javascriptasked Marcio Andre 31 -
2
votes1
answer273
viewsQ: How to import and export members using Ecmascript modules in the browser?
I am trying to import a class, but I am making one or several mistakes. Can anyone enlighten me about? Filing cabinet js/calendar: export default class Calendar { constructor(date) {…
-
-2
votes1
answer167
viewsQ: How to remove entity classes from Java Persistence mapped in a deleted project?
Database entity classes mapped in a previous project that was deleted continue to appear if I create a new project with the same name. How to Resolve with Netbeans 8.2 and Glassfish 4.1 Application…