A twitter like navigation topbar with Bootstrap

I want to show you how to create a twitter like navigation topbar in few minutes using Bootstrap. “Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.” As usual I am going to show...

Read more »

Non-Blocking JavaScript with Clumpy

Non-Blocking JavaScript with Clumpy

Some months ago I worked on an experimental interface (I’d like to publish a post regarding it soon). I had a problem acting with javascript on a big number of dom elements. To solve that problem I used Clumpy. “Clumpy emulates for, for…in, while,...

Read more »

How to avoid a js action if the mouse is over an element

How to avoid a js action if the mouse is over an element

Working with javascript you can have a problem like that: you want to call an action after few milliseconds from the onready event. To do that you can use the setTimeout function at the domready event. For example we want to show the alert...

Read more »

Using Anchors in AJAX base web apps

Using Anchors in AJAX base web apps

In these years the use of AJAX calls and javascript in web pages is grown. Javascript could be really useful to create web based apps, reduce loading time of pages and create fancy web pages. Using javascript to change the contents in your pages...

Read more »

Text highlighting filter with Django

Text highlighting filter with Django

Recently, working with Django, I needed a simple template filter with which highlight a string in a block of text. I found this snippet (thank you at the author to shared his work) but I modified it because I needed a case insensitive filter....

Read more »