How to replace “live” with “on” in jQuery 1.7+

July 14, 2012  |  No Comments
jquery

The functions “bind” and “live” are being deprecated in jQuery 1.7+ in favor of “on”, but it’s not very clear how their differences reflect on it. As you might know, “bind” attaches event handlers on DOM elements existing at the time of running the instructions, while “live” also attaches these handlers to DOM elements added [...]

Continue reading

Indespensable Typo3 extensions

June 25, 2012  |  No Comments
featuredimage_typo3

Here’s a list of my favorite Typo3 extensions, which I use to build most of my websites

Continue reading

Typo3: Give format to “bodytext” taken from the database

May 13, 2012  |  No Comments
featuredimage_typo3

Displayed text directly from the database with Typoscript can be shown sometimes without format. Here I explain how to solve this problem.

Continue reading

Filter access to a webpage by IP through .htaccess

May 10, 2012  |  No Comments
featuredimage_javascript

Let’s say you want to put your website down for maintenance. You want to redirect your visitors to a “We are Down at this moment” page while you are still capable of seeing the changes you make on the page. This can be achieved through some tweaking in the .htaccess file. Lets say that your [...]

Continue reading

Discovering deferred objects in jQuery

April 3, 2012  |  No Comments
featuredimage_javascript

Using callbacks in animations is very easy, but what happens if you wish to use one callbacks after animating several elements?

Continue reading