﻿$(document).ready(function () {

    // attach a click event to all widgets on the page
    $('.pageWidget').click(function () {

        var widgetId = $(this).attr('id').replace('widgetId_', '');

        $.ajax({ url: "/handlers/widget-click.ashx?ItemId=" + widgetId, dataType: "json", success: function (data) {
            window.location.href = data.WidgetLink;
        }

        });
    });

});
