/****************************************\ * Author: Gabriel Guzman * * Date: 20-08-2008 * * Email: gabriel.guzman@concatel.com * * CVT Argentina * \****************************************/ /** * Parameters: * @url: * String * Ex.: url: 'simplePopup.so?action=drawPopup' */ function UsersPopup(){ /* Read configuration parameters */ this.configure = function(options){ this.url = options.url; this.curr_url = options.curr_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, data: {curr_url: this.curr_url}, success: function(data){ $('div[@type="login-popup"]:last').html(data); }, error: function(error){ // } }); } }