forked from rebillar/site-accueil-insa
24 lines
680 B
JavaScript
24 lines
680 B
JavaScript
/*!
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
window.SEOWidget = {
|
|
getRank: function () {
|
|
var ajaxRequest = new ajaxHelper();
|
|
ajaxRequest.setLoadingElement('#ajaxLoadingSEO');
|
|
ajaxRequest.addParams({
|
|
module: 'SEO',
|
|
action: 'getRank',
|
|
url: encodeURIComponent($('#seoUrl').val())
|
|
}, 'get');
|
|
ajaxRequest.setCallback(
|
|
function (response) {
|
|
$('#SeoRanks').html(response);
|
|
}
|
|
);
|
|
ajaxRequest.setFormat('html');
|
|
ajaxRequest.send();
|
|
}
|
|
};
|