home

Category Archives: javascript

simple jQuery ajax delete with confirmation

Jul 5th

Here is a quick tip on on building an ajax delete page in php and mysql with a bit of jQuery to handle the ajax. We will assume you have some list of entries in a database and that you … Continue reading

read more View Comments

TinyMCE Absolute Urls

Jun 25th

Quick tip: You can specify absolute urls in tinyMCE quite easily. document_base_url : “http://yoursite.com”, absolute_urls : true I am sure this is an RTFM but I did not see anywhere exactly where it was.  I have been using this with … Continue reading

read more View Comments

Font Replacment

Dec 10th

Font replacement aka dynamic text replacement has been around since 2004. I did not start using it till late 07 but lately it seems to be a hot topic again. Mostly because it has become a lot easier to implement I believe and SEO has become more prevalent. Continue reading

read more View Comments

jQuery Journal

Oct 13th

Want to learn jQuery. I am working in partnership with multiple people on building a one stop shop for learning jQuery for beginners. Continue reading

read more View Comments

jQuery and urlencode / decode

Jun 29th

Using jQuery and ajax can be tricky if you need to get urls with parameter in them.  You need to be smart when you pass a url so make sure to encode the url. update: August 2010 Don’t use the … Continue reading

read more View Comments