// JavaScript Document

$(document).ready(function() {
  
  // notice that you can pass an element as the target 
  //  in addition to a string selector.
  var t = $('#ex2 div.jqmWindow');
  
  $('#ex2').jqm({
    trigger: 'a.ex4Trigger',
    ajax: '@href' /* Extract ajax URL from the 'href' attribute of triggering element */
	});
  

});
