Archive for the ‘jQuery’ Category

Multiple file uploads and progress bar with XHR2 and jQuery

Thursday, June 7th, 2012

I just found this example of how to do multiple file uploads and showing progress too. This works with the normal file handling using $_FILE as opposed to my earlier example that used stream_copy_to_stream.... Read More

Pulsating and glowing text with CSS3 and JavaScript

Tuesday, May 31st, 2011

The other day I needed to create an animated glow on some text. I quickly found the jQuery glow plugin but it didn’t work in Firefox 4.0.1, no idea why and I didn’t care to find out either.... Read More

How to style jqPlot, and format labels

Wednesday, May 25th, 2011
jqPlot dark style

I just had to style jqPlot for inclusion in a darkly styled site. Not the easiest as some things can be styled via CSS whereas some things need to be styled via the jqPlot options.... Read More

Why I used jqPlot for ChartBasket.com instead of Flot

Tuesday, March 29th, 2011

In general I consider Flot to be the more capable solution. But in the case of ChartBasket I wanted to setup something quickly and I didn’t need the more advanced stuff Flot makes available, for instance zooming.... Read More

JQuery trigger and JS Function Call revisited

Monday, November 29th, 2010

I just have to post this little code listing. It’s basically a mix between stuff detailed in two prior posts, Keeping it DRY with Function.call and jQuery toggle and Using jQuery’s trigger for automated interfaces. It is however much simpler than either of the prior posts and therefore makes for a better example.... Read More

jQuery Flash Banner rotator

Sunday, October 3rd, 2010

jquery_flash_banner_rotator.png... Read More

Hierarchical data with PHP and jQuery

Saturday, October 2nd, 2010
hierarchical-form.png

Demo here (go ahead and submit the form as much as you like, it will keep pre-populating with the data you submit).... Read More

Custom LightWindow with jQuery – from scratch

Friday, October 1st, 2010
jquery_custom_lightwindow.png

There are basically only a few things involved in the successful creation of a lightwindow:... Read More

Showing and hiding table columns with jQuery

Thursday, September 9th, 2010

So I just finished an interface showing a search result which is paginated and sortable by column but the pagination and sorting is another story. Here we focus on the fact that each column’s visibility could also be toggled on and off.... Read More

Keeping it DRY with Function.call and jQuery toggle

Wednesday, September 1st, 2010

Update: There is now a simpler example of the principles detailed here in the form of JQuery trigger and JS Function Call revisited. ... Read More