Posts by Jean Lucas de Carvalho • 603 points
5 posts
-
1
votes1
answer233
viewsA: Routing with "id" parameter ends on white page
Your code seems to be ok. You could replicate the behavior on Jsfiddle? 'Cause that makes it easier for anyone who wants to help. Can do the .get only of json which is returned from the bank. EDIT…
-
11
votes7
answers12436
viewsA: Use semicolon or not at the end of the lines in Javascript?
I recommend reading this article by Caio Gondim, because non-use can cause several situations and it is good to understand each one of them.…
-
1
votes18
answers139957
viewsA: What is the best way to center an element vertically and horizontally?
Try adding the following class to the element you want to center: .Absolute-Center { margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } This approach was presented in Smashing…
-
33
votes9
answers9696
viewsQ: Is it right to use the <i> tag for icons and not italics?
Currently we have noticed that many people have been using the tag <i> for icons and not for italics. If we were still in the pre-HTML5 era this would be totally wrong. According to the…
-
4
votes6
answers27772
viewsA: When, why and how to use the "use Strict" directive in Javascript?
Caio Gondim wrote a very good article about Infinite Loop that says the following: Strict mode is a new Ecmascript 5 Feature that allows Javascript code to run in a more rigorous mode. In this mode,…