Yelotofu
Yelotofu Recent Blog Posts
Tip: getting values from an options list
on Oct 21, 2009 in JavaScript array jquery jquerymap optionslist So, if you've ever converted an options list into a single array of values you might have intuitively done this: var select = $('#mySelectElement')[0]; var values = new Array(); for (var i=0; i < select.length; i++)...
Happy Birthday Google Chrome!
on Sep 4, 2009 in Browser Testing browsers chrome googlechrome Wow, it's been a year already? Time certainly flies when you're having fun! It seems the Google Chrome team have been had at work! They've finally made a version of Google Chrome for Mac and Linux which you could download from the Dev channel. Had a...
Zend Server CE and Snow Leopard Problem
on Sep 3, 2009 in Ramblings snowleopard zendserver zendserverce There's a compatibility issue with the Java Bridge in Zend Server CE which results in failure of the ZendServer admin interface. A temporary fix could be found at http://forums.zend.com/viewtopic.php?f=44&t=1115 I found this out the hard way - r...
Labs: UI inlineEdit
on Sep 1, 2009 in JQuery UI JavaScript in-place-edit inline-edit inlineedit inplaceedit jquery jqueryui After my last tutorial on building a simple inlineEdit plugin I converted the concepts into a UI widget. It's now sitting in labs for you to use, pick apart and devour: http://jquery-ui.googlecode.com/svn/branches/labs/inlineedit/demo.html If you in...
Tip: Obtaining Request Parameters in Zend_View
on Aug 6, 2009 in PHP zend framework I found it virtually impossible to obtain GET or POST request parameters in Zend_View without resorting to accessing the $_GET or $_POST variables. Directly accessing these variables within Zend_View is bad practice so it's been suppressed on purpose...
jQuery Inline Edit tutorial
on Aug 5, 2009 in JavaScript editinplace inlineedit inplaceedit jquery plugin A friend recently asked me to review his edit-in-place code which turned out to be a modification of the one found at http://docs.jquery.com/Tutorials:Edit_in_Place_with_Ajax. Reading the tutorial on that page I asked myself how I would do this diffe...

