Posts by Vitor Paladini • 52 points
4 posts
- 
		1 votes1 answer607 viewsA: How to call a function within an addeventlistener?Directly answering the question: How to call a function within an addeventlistener? Eventtarget.addeventlistener() needs at least two parameters. One type of event and a Listener, which can be an… 
- 
		-2 votes3 answers4406 viewsA: Use @media, @media screen and or @media only screen and Have a difference?There is a difference. only is it good for anything today? Probably not. According to the W3C Media Specification Document only serves to prevent specified styles from being displayed in older… 
- 
		3 votes2 answers259 viewsA: The UL LI losing formatting after I put it on line... Why did the "balls" of my LI disappear?The Bullets <li> disappeared because they are a behavior restricted only to the display: list-item, component standard <li>. When you set inline-block in CSS you end up overwriting this… 
- 
		0 votes2 answers78 viewsA: Generate HTML components with PHP and these assign javascript characteristicsWhen you run the $('.data').datepicker({...}) for the first time, jQuery Datepicker creates instances of for all elements . data available in the DOM at this very moment. When you create new…