Posts Tagged ‘Javascript’

Emacs as a Multi Mode Web Dev IDE is Now Possible

Friday, October 18th, 2013

Through web-mode the possibility of using Emacs as a web dev IDE with full multi mode capabilities a la Aptana Studio or PHPStorm is finally here. But it will take some tweaking to get things perfect so read on…... Read More

JavaScript Pop-under

Monday, January 23rd, 2012

I recently had to do a pop under with JS and found the below snippet (can’t remember where anymore), I might need it again so I post it here for reference.... Read More

PHP style empty function for JavaScript

Monday, December 5th, 2011

I often find myself wanting the empty() function of PHP in JavaScript, here it is:... 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

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

jQuery Drag and Drop to sort Tree

Sunday, March 7th, 2010

jquery_drag_and_drop.png... Read More

The basic C(R)UD

Sunday, January 10th, 2010
jquery_ajax_php_crud.png

I recently made a very simple but functional administrational interface using jQuery and Ajax to avoid having to refresh the page all the time thus simplifying development.... Read More