Tag Archives: tutorial

jQuery: Checking or Unchecking All Checkboxes

Providing functionality to check all, uncheck all or even to invert the checkboxes currently selected on a page is pretty simple to achieve with either plain old JavaScript or the newer, more flashy jQuery library. Continue reading

Posted in Technology & Code, Tutorials | Tagged , , , , , , , , , , | 8 Comments

How to Check if Your Javascript Function Exists

So the question I was then left with is how to check for the existence of a function before actually calling that function, the solution to which turns out to be fairly simple. Continue reading

Posted in Technology & Code, Tutorials | Tagged , , , , , | Leave a comment

Photoshop: Text Tool Keyboard Shortcuts

In order to speed up your work using Photoshop’s powerful but sometimes quite frustrating text tool, here are a couple of handy keyboard shortcuts you might like to remember… Continue reading

Posted in Software & Websites, Tutorials | Tagged , , , , , , | 9 Comments

Inserting Backslashes into a Database Table with PHP

Sometimes you need to store things like file paths into a database table during your PHP script’s execution. However, on going back to the database after running your script, you might come across your path with all of its backslashes (\) missing! Continue reading

Posted in Technology & Code, Tutorials | Tagged , , , , , , | 2 Comments

Getting the First Object Returned by a jQuery Selector

If for instance you have just used a jQuery selector to grab a whole lot of objects and now realize that in actual fact you only want to effect the first object that the selector returned to you, you can rest easy in the knowledge that jQuery as per usual has you covered. Continue reading

Posted in Technology & Code, Tutorials | Tagged , , , , , | Leave a comment