mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-30 08:51:24 +00:00
45 lines
1 KiB
JavaScript
45 lines
1 KiB
JavaScript
/**
|
|
* jQuery Yii plugin file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
* @version $Id: jquery.yii.js 1289 2009-08-06 15:33:57Z qiang.xue $
|
|
*/
|
|
|
|
;(function($) {
|
|
|
|
$.yii = {
|
|
version : '1.0',
|
|
|
|
submitForm : function (element, url, params) {
|
|
var f = $(element).parents('form')[0];
|
|
if (!f) {
|
|
f = document.createElement('form');
|
|
f.style.display = 'none';
|
|
element.parentNode.appendChild(f);
|
|
f.method = 'POST';
|
|
};
|
|
if (typeof url == 'string' && url != '') {
|
|
f.action = url;
|
|
};
|
|
var inputs = [];
|
|
jQuery.each(params, function(name, value) {
|
|
var input = document.createElement("input");
|
|
input.setAttribute("type", "hidden");
|
|
input.setAttribute("name", name);
|
|
input.setAttribute("value", value);
|
|
f.appendChild(input);
|
|
inputs.push(input);
|
|
});
|
|
|
|
jQuery(f).trigger('submit');
|
|
|
|
for (input in inputs) {
|
|
f.removeChild(inputs[input]);
|
|
}
|
|
}
|
|
};
|
|
|
|
})(jQuery);
|