Blog: All Posts ✍

Sharing ideas and code (RSS available)

test

Organizing jQuery Code

May 9, 2011 · 2 min read

Organizing jQuery code is not easy. Up to now, especially on small/medium scale projects, I used to have a huge jQuery ready function and place all my code there. Some times if...

test

Ambrosia theme

April 6, 2011 · 2 min read

Welcome to the official page of the Ambrosia theme. Here you can find more details about it. INSTALLATION Log in to your WordPress admin panel and navigate to Appearance -> Themes. Click the “Install...

test

Conditional CSS for Webkit-based browsers

April 4, 2011 · 1 min read

Edit: Please keep in mind that the below code works also on MS Edge. You can re-write MS Edge specific CSS using @supports (-ms-accelerator:true) {} (read more on the comment section). On a...

test

Nwrapper jQuery plug in

March 28, 2011 · 1 min read

The plug in I wrote for wrapping every n amount of elements, is finally online at the official jQuery plug in repository. Have a look at the demo page and I’m looking...

test

Wrap any amount of elements with jQuery

February 24, 2011 · 2 min read

Update: Get the nwrapper plugin from the official jQuery plugins site. jQuery provides a large variety of functions for element manipulation, that in most cases will manipulate the selected elements in no...

test

A really simple HTML5 template

January 19, 2011 · 6 min read

Lately I’m using more and more HTML5 elements on my markup. It’s the right thing to do after all, especially on smaller, flexible projects. But as a typical developer I’m too lazy...

test

How to create a bookmarklet

November 17, 2010 · 3 min read

A bookmarklet is a small Javascript program stored into a url. A user can bookmark the specific url, and execute the Javascript code on any page. The good news is that it’s...

test

A really simple "equal heights" method for jQuery!

September 29, 2010 · 1 min read

Nothing special, a really basic “equal heights” method written in jQuery. $.fn.equalHeights = function () { var maxHeight = 0; $(this).each(function (index) { var height =...

test

CSS3 PIE: My new favorite IE enhancement

September 23, 2010 · 1 min read

IE sucks big time, period! Even version 8 doesn’t support many useful CSS rules such as border radius and box shadow, both standard things for 2010. For those who already use all...

test

How to attach a custom apple iPhone / iPad icon to your website

August 24, 2010 · 2 min read

If you already have an iPhone, iPad or any other iOS-based device, you have definitely seen the strange bookmarking Safari option “Add to home screen”. The specific option creates an application like...