Entries Tagged as / Tips & Tricks

Oct 04 / Skip jQuery document.one event for certain elements
Tags / Tips & Tricks, / jQuery
View count: 15454

document.one skip solution

So, the situation here is very straigth forward: you want to use $(document).one handler on something like pop-up settings box, which should be closed if user clicks anywhere outside of it. But what if the settings box in question has some elements inside it that need a separate handling and should keep the box open? Read inside on how to skip document.one event in such cases.

[ Read more ]

Jul 27 / Trim function for older IE browsers
Tags / Tips & Tricks, / jQuery
View count: 15914

If you use jQuery, you've certainly came across the trim() function. It's the quickest and painless way to remove the white space from the beginning and end of a string. However as much as jQuery tries to cover cross-browser compatibility, there's just this little that always gets missed out on. For a quick workaround read inside.

[ Read more ]

May 02 / Remove outline property from the links (inc. IE6 & IE7)
Tags / Tips & Tricks, / CSS, / jQuery
View count: 18273

There are times when you create a navigation layout that just cannot bear the outline property that is being added by browsers. Although it is not an issue in most of the latest ones, some of the older browsers such as IE 6 & 7 can give you a bit of a hard time accepting your unwillingness to use its standards. However, just as any other 'bug', this one's got a solution too.

Hit 'read more' to find out just how it can be solved in few simple steps.

[ Read more ]

Jan 15 / jQuery Custom Content Scroller mobile extension [updated 18/03]
Tags / Tips & Tricks, / JavaScript, / jQuery
View count: 29986

Familiar with malihu jQuery Custom Content Scroller? Or maybe even using it extensively on all the projects you lay your hands on? Read inside to find out how you can add mobile browser functionality to this otherwise extremely brilliant script.

[ Read more ]

Nov 04 / Custom website font with @font-face
Tags / Tips & Tricks, / CSS
View count: 18538

So you have designed and built the website polishing down every single curve and corner for it to look as fabulous as it was originally intended. Then upload it to the server and … surprise! It just doesn’t look like on your local machine. After performing a thorough investigation on your endless CSS files you realise, that in fact all that has changed is… FONT. Sounds familiar?

Continue reading...

[ Read more ]

Sep 17 / Read and process hash tag URL
Tags / Tips & Tricks, / JavaScript
View count: 17714

Using hash tag links is a popular practice between AJAX calls based websites as hash tag URL extension can be easily changed without reloading the page. This post will show you how to read the part of URL after the hash tag and process it to the specified function. Read inside to see how it really works.

[ Read more ]

Sep 14 / External hash tag link and Internet Explorer bug
Tags / Tips & Tricks, / JavaScript
View count: 18984

If you are jQuery fan and building a web site with some animations you will (most likely) end up using hash tag links. But if you ever try to open them using external souce link you may bump into a very unpleasant surprise. Using the 'notorious' Internet Explorer such links, once opened will automatically refresh the page at your very first click.

Look inside for a very simple workaround to this little, but quite annoying bug.

[ Read more ]