﻿$(document).ready(function () {
    var wpcells = $('.WebpartContainer .s4-wpcell');

    wpcells.each(function () {
        $(this).unbind('mouseup');
        $(this).attr('onmouseup', '');

        $(this).unbind('keyup');
        $(this).attr('onkeyup', '');
    });
});
