Categories
Opinions

Why and When of jQuery

Why jQuery Let’s explain DOM as this term, will be used numerously for the rest of the article. Essentially jQuery solved issues between DOM and JavaScript. When Html renders all the assets like html,images and CSS it creates a DOM tree and that we use JavaScript to traverse DOM tree or elements on the page. When web […]

Categories
Opinions

Emerging Web Technologies like CSS and ol’

Why we’ve CSS: I will not go much deeper into the history of CSS and why it is there in the first place but in the beginning, CSS was just for type and colors, that’s it. Then we’ve to rely on problematic Floats and Absolute Position to position elements or section. Until recently they are […]

Categories
Tutorials

Git/Github Push tip

I love git and it’s counter part github, but whenever comes to uploading my local project to online, I always stuck at once place, which is pushing. You can think of pushing as uploading and in git terms we say pull instead of downloading. Git and Github combo is so good that I have started […]

Categories
Tutorials

Creating Simple Image Gallery Part 2

In part 1 we have created image gallery and in this post we will bring it to the end by adding interactivity. So now when ever we click on the thumbnail image, it’s full version has to be shown on the right column. For this purpose we will need a little Javascript. But don’t worry […]

Categories
Tutorials

Creating simple image gallery Part 1

Image gallery is great way to show off your work, you photography skills and you mind wanted to bring in all the memories and present them nicely. This tutorial is divided in to two parts. In part 1 we will be focusing more on the bare bones of image gallery, it’s structure and aesthetic look. […]