Yamoodow
Yamoodow – Yet Another MOOtools modal winDOW

Netzelf developed this nice mootools-based modal-script with the following features:
- Unobtrusive, lightweight Javascript (1 Class, 6,1kB compressed)
- Easy to install and use
- Modal window based on Slimbox
- Loading content via Ajax or Iframe
- Support for Tabs
- Support for caching loaded content
- Lots of options
- Fully customizable language
- Fully customizable design (via CSS)
- At least three events: load, failure and success
You can find the documentation and downloads on the Yamoodow project page:
http://netzelf.de/releases/yamoodow/
Have fun




May 19th, 2009 at 0:45
Light and rapide, I love it
September 5th, 2009 at 5:38
Very nice plugin thanks… i have question why is it when i use the ymd.openWin(); the overlay is not showing only the window or i have missed somthing please help.
September 6th, 2009 at 15:27
Do you have a link to the site on that you tried?
September 8th, 2009 at 3:44
@metti its on my local pc yet not on production
this is my code:
function namehere(var here…)
{
…
…
var ymd7 = new yamoodow([
{ url:'modal.html', iframe:true },
],
{
title: ‘Item Listing’,
buildTabs:false,
overlayOpacity:1.0
});
ymd7.openWin();
}
i did not use the click event on this, i put it inside the function instead…
September 8th, 2009 at 12:58
Hey kilatkyut,
please consider to use the domready-event to load the window without click or to add the events for your function.
Anyway it was not your mistake – there was a bug on the transition chains. I updated the packages and you can now download them. Then it should work.
September 11th, 2009 at 9:03
@metti
Thank you very much sir for the big help!… keep it up
September 11th, 2009 at 9:35
@metti
regarding the changes you made it really works great but i think there is some problems because the click events is the one that is not working now.
before the update this code works for me:
var ymd = new yamoodow([
{ url:'modal.html', iframe:true },
],
{
opener: $(’ymdOpener’),
title: ‘Sample Modal’,
buildTabs:false
});
But now its not working but my previous problem about inside function is working great…
September 11th, 2009 at 23:53
Finally it works – found the right problem but the wrong solution^^ (I updated the packages again in the hope that 9/11 won’t affect it).
Please consider not to use the event on load but on domready. Otherwise in IE the internal setup function is not complete and the content can not load. (I did not find a solution for that issue – elsewhere all works fine):
window.addEvent('domready',function() { ymd7.openWin() });Hope you enjoy the script. Bye
September 14th, 2009 at 3:18
Thanks metti it really works 100% thanks very much…