Posts by Zanoldor • 111 points
5 posts
-
0
votes4
answers129
viewsA: Problem with positioning of div
So, it gets a little difficult without seeing your code, but replying to the question of the position of which div is in front, use the "z-index: 10" in css, the 10 is just to exemplify, you can…
-
6
votes2
answers1225
viewsQ: Maven + Spring MVC + JSP project, how to share view files?
I’m trying to adjust a file structure to start a big project, an ERP to be more exact. Today, there is a good part of it made in PHP in a disorderly way. Let’s adopt Java Web (Maven + Spring MVC +…
-
0
votes3
answers3726
viewsA: What good is a "self Join"?
Self Join is used when a table references its own data. Like that: SELECT * FROM Table t1, Table t2 WHERE t1.Id = t2.ID
-
3
votes3
answers165
viewsA: What defines good logic?
I believe the old saying divide and conquer is good practice. Making code with reasonable size, well modularized, well-oriented objects helps in managing memory, but above all, helps in maintaining…
-
1
votes7
answers3980
viewsA: How to check if there are numbers inside an input with Javascript?
This way here I’ve used and tested and it’s cool. $('#id_do_seu_campo_input').bind('keyup', function() { $(this).val( $(this).val().replace(/[^a-z]/g,'') ); }); hug.…
javascriptanswered Zanoldor 111