Headhunters are calling to you and want to check your skills as fast as possible. What are they asking about? Its rather simple questions but…
Pure JavaScript – Private and public methods
Have you been creating your own classes in pure JavaScript? What if you neeed a private method? How to create them? So finally you can…
Pure CSS only collapsible elements. How to create accordion without JavaScript
Pure CSS collapsible (with on click) containers/elements/whateva. HTML Code: <div id="elem"></div> <a href="#" class="par cac1">Tab 1</a> <a href="#" class="par cac2">Tab 2</a> <a href="#" class="par cac3">Tab…
Front End Developer arsenal – SASS. Installation and short manual
Have you ever been dreaming about variables in CSS code? Or maybe other functionalities like functions? The simplest way to have a variables in CSS…
Autoexecuted object in JS
Sometimes you will need to create autoexecuted object (for example in case of load/document ready events). Have you tried to do it this way? Autoexecuted…