Archive for the ‘jQuery’ Category

h1

jquery facebook autocomplete

February 18, 2008

simple “jquery facebook autocomplete”
you can checkout from code.google at:
https://wharsojo-js.googlecode.com/svn/jquery.autocompletefb/trunk
or
http://wharsojo-js.googlecode.com/files/jquery.autocompletefb-0.1.1.zip

screen-shoot
jquery_acfb_sc_shoot
jquery_acfb_sc_shoot2

h1

notepad++ my current editor

May 3, 2007

My Current editor for webdevelopment (check on Categories on this post)
NOTEPAD++
notepad.png

h1

CakePHP - classpath on cache error

April 30, 2007

when you have function like this and if it process rapidly (says like using timeout or timer) and if it the engine on the back-end query to database, sometimes the result of the cache for classpath got errors, so you must adjust how you call to the server using ajax!.

function ajaxReload(action,targetID) {
logEvent(’===>AJAX:Reload’+targetID);
$.ajax({
type: “POST”,
url: “webroot);?>boards/”+action,
data: “name=John&location=Boston”,
success: function(msg){
$(targetID).html(msg);
}
});
}