Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rank.js « templates « SEO « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7a3802fc9f0c8f6c5843c265f1fb2abb9d23b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*!
 * Piwik - Web Analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

$(document).ready(function () {
    function getRank() {
        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(false);
    }

    // click on Rank button
    $('#rankbutton').on('click', function () {
        getRank();
        return false;
    });
});