- Contextual Help in Module Development
- Google's Friend Connect vs. Your Privacy
- The Top Modules On My List
- Tax Free Yachts from the California Republican Party
- Search Sprint Conclusion
- DrupalCamp Vancouver Success
- DrupalCamp Vancouver 2008: Information Architecture Slide Deck
- DrupalCamp Vancouver 2008: Panels 2 Slide Deck
- Search Sprint Day One
- ACLU's "Freedom Files" Season 2
jQuery
Full Screen Switcher On Google Maps
Submitted by Bevan Rudge on January 24, 2008 - 8:33pm.
2 months ago we launched the Witness Video Hub. Last week the Hub Map's full-screen mode was finally released!
It features an original full-screen-mode switcher which puts the map in to, and out of, fullscreen mode without a full page reload.
jQuery hook, event message passing, callback function
Submitted by Jonathan Hendler on May 22, 2007 - 9:20pm.
Do you like Drupal's hook functionality?
Maybe this jQuery extension could serve as a way to replicate that that functionality. Currently I use the extension below to allow the extension of existing libraries I've written.
Let's say in your library you write :
One function in a new libarary could write
Maybe this jQuery extension could serve as a way to replicate that that functionality. Currently I use the extension below to allow the extension of existing libraries I've written.
Let's say in your library you write :
if (confirmed){
$('#css-id').hide(
function(){
$.hookExecute('css_id_hidden');
}
);
}
One function in a new libarary could write
function css_id_hidden(){
alert('Hidden!');
}






