Embed this code in script tag of you page's HTML to disable right-click contextual menu
This is a highly-requested code to use two CSS columns, and make them having exactly the same height.
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
})
This is a highly-requested code to use two CSS columns, and make them having exactly the same height.
function equalHeight(group) {
tallest = 0;
group.each(function() {
thisHeight = $(this).height();
if(thisHeight > tallest) {
tallest = thisHeight;
}
});
group.height(tallest);
}
/*
Usage:
$(document).ready(function() {
equalHeight($(".recent-article"));
equalHeight($(".footer-col"));
});
*/
