/****************************************\ * Author: Gabriel Guzman * * Date: 20-08-2008 * * Email: gabriel.guzman@concatel.com * * CVT Argentina * \****************************************/ /** * Parameters: * @url: * String * Ex.: url: 'simplePopup.so?action=drawPopup' */ function LegalPopup(){ /* Read configuration parameters */ this.configure = function(options){ this.url = options.url; } /* Create the loading skeleton */ this.draw = function(){ return '
Loading...
'; } /* Load the real body of the popup */ this.load = function(){ $.ajax({ async: true, url: this.url, success: function(data){ $('div[@type="legal-popup"]:last').html(data); }, error: function(error){ // } }); } }