Blind Toggle

Blind Toggle

Hello,

I wondered if anyone could help me? I have a page with a modal window of a seperate page that is using a slideToggle. All is working fine but I want a blind toggle effect and everything that I try is not working.

My code is

var triggers = $('a.ex3bTrigger')[0];

 
  $('#ex3b').jqm({
    trigger: triggers,
    ajax: '@href',
   modal: true,
    target: 'div.jqmAlertContent',
   onShow: function(h){ },

   onLoad: function(h){
         h.w.css('opacity',0.9).slideToggle('slow');

      },

   onHide: function(h) {
         h.w.slideToggle('slow');
         h.o.remove();
      },

    overlay: 0
    });