
‘;
var MOB_3_PARAMS = {};
var options = { threshold: 0 , rootMargin: “200% 0px 200% 0px” };
var dynamicAdsObserver = new IntersectionObserver(function(entries) {
entries.forEach(function (oneEntry) {
if (oneEntry.isIntersecting) {
dynamicAdsObserver.unobserve(oneEntry.target);
var domId = oneEntry.target.id;
googletag.cmd.push(function() {
requestBidsForAdSlot(MOB_3_PARAMS[“slot”], domId);
});
}
});
}, options);
function loadAdUnit(input) {
input.playerContainer.innerHTML += AD_UNIT_MARKUP;
var adContainer = input.playerContainer.querySelector(“.mob_300250_3_ad”);
googletag.cmd.push(function() {
var slot = initAdUnit(“Mob_300250_3”);
if (!slot) return;
var div = document.createElement(‘div’);
div.id = slot.getSlotElementId();
adContainer.appendChild(div);
if (input.userCountry == “IN”) {
requestBidsForAdSlot(slot, div.id);
return;
}
MOB_3_PARAMS[“slot”] = slot;
var adElementDiv = document.getElementById(adUnits[“Mob_300250_3”].div);
dynamicAdsObserver.observe(adElementDiv);
});
}
return loadAdUnit;
})();
‘;
function loadPlayer(params) {
if (typeof initConnatixPlayer === “function”) {
params.playerContainer.innerHTML += PLAYER_MARKUP;
var container = params.playerContainer.querySelector(“.connatix-container”);
container.classList.remove(“hidden”);
var holder = params.playerContainer.querySelector(“.connatix-holder”);
initConnatixPlayer(holder, params);
}
}
return loadPlayer;
})();
‘;
function loadPlayer(params) {
if (typeof initSTNPlayer === “function”) {
params.playerContainer.innerHTML += PLAYER_MARKUP;
var container = params.playerContainer.querySelector(“.stnPlayer-container”);
container.classList.remove(“hidden”);
var holder = params.playerContainer.querySelector(“.s2nPlayer-holder”);
initSTNPlayer(holder, params);
}
}
return loadPlayer;
})();
Despite having so many deserving nominees to choose from, Dana White picked the three-round, back-and-forth grueling battle between Khamzat Chimaev and Gilbert Burns at UFC 273 as ‘Fight of the Year.’
American television sports reporter Heidl Androl announced the winner, stating:
“There were so many memorable fights in 2022 but there can only be one winner. It is an absolute honor to announce that this year’s selection goes to Gilbert Burns vs. Khamzat Chimaev.”
Gilbert Burns reacted to the news with a video message and said:
“Just got the news that my fight got the UFC honors. My fight with Khamzat Chimaev [in] April 2022 was one of the best fights and it got the UFC honors. So I’m very happy! Thank you UFC, I love the company. Thank you fans and [I am] here to stay.”
Khamzat Chimaev sent a message thanking the UFC president and his beloved fans for recognizing his hard-fought victory against Burns:
“Thank you Dana White. Thanks to my fans and [I am] coming soon to take the belt in 2023.”
Watch the full fight below:
UFC strawweight champion Zhang Weili was awarded the ‘Performance of the Year’ honor for her KO victory in the rematch against Joanna Jedrzejczyk at UFC 275.
Check out the full episode below:
Place your bets for the upcoming UFC Fight Night main card and earn $$$.
What did Dana White say about the slapping incident with his wife on New Year’s Eve?
Dana White grabbed the media spotlight at the beginning of the year for all the wrong reasons. White was in the news for slapping his wife in Mexico on New Year’s Eve while intoxicated.
The UFC president can finally take a breather now that the organization has announced some major developments, including the return of Jon Jones, the two-time light heavyweight champion.
However, White asserted during his first public appearance after the terrible physical altercation that his public image had been irreparably tarnished. White told the media ahead of UFC Vegas 67:
“I’ve got to walk around for however long I live…. and this is how I’m labeled now. My other punishment is that I’m sure a lot of people, whether it be the media, fighters, friends, acquaintances who had respect for me might not have respect for me now.”
Check out the video below:
modalPopup.closeOnEsc = false;
modalPopup.setHeader(“Why did you not like this content?”);
modalPopup.setContentText(modalText);
modalPopup.addCancelOkButton(“Submit”, resetRatingAndFeedbackForm, sendRating);
modalPopup.removeCloseModalIcon();
modalPopup.disableDismissPopup();
modalPopup.open();
} else {
sendRating(index);
}
}
function sendRating() {
var requestPayload = {
“post_id”: 1365771,
“rating_value”: ratingValue
}
if (ratingValue > 3) {
requestPayload.rating_feedback_type = null;
requestPayload.rating_feedback = null;
} else {
if (!$(‘input[name=”drone”]:checked’) || !$(‘input[name=”drone”]:checked’).value) {
showErrorMessage(‘option’);
return;
}
if (!$(“.post-rating-feedback-note textarea”) || !$(“.post-rating-feedback-note textarea”).value) {
showErrorMessage(‘note’);
return;
}
var selectedOption = $(‘input[name=”drone”]:checked’).value;
var feedbackNote = $(“.post-rating-feedback-note textarea”).value;
requestPayload.rating_feedback_type = selectedOption;
requestPayload.rating_feedback = feedbackNote;
}
pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true);
}
function resetRatingAndFeedbackForm() {
var activeStars = Array.from($all(‘.rating span.rating-star.active’));
for (var i=0; i < activeStars.length; i++) {
activeStars[i].classList.remove(“active”);
}
if ($(‘input[name=”drone”]:checked’)) {
$(‘input[name=”drone”]:checked’).checked = false;
}
var userNote = document.querySelector(“.post-rating-feedback-note textarea”);
userNote.value = ”;
modalPopup.close();
}
function onsaveRatingSuccess() {
modalPopup.close();
savePostIdInUserRatedPostsCookie();
$(“#post-rating-layout”).classList.add(“hidden”);
$(“#post-rating-message”).classList.remove(“hidden”);
window.setInterval(function showMessage() {
$(“#post-rating-widget”).classList.add(“hidden”);
}, 3000);
}
function onsaveRatingFail() {
console.error(‘Saving post rating failed!’);
modalPopup.close();
}
function savePostIdInUserRatedPostsCookie() {
userRatedPostIds.push(1365771);
var expiryTime = new Date();
expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year
setCookie(“user_rated_post_ids”, JSON.stringify(userRatedPostIds), expiryTime);
}
function isPostRatedByUser() {
var userRatedPostIds = getCookie(‘user_rated_post_ids’);
if (userRatedPostIds) {
try {
userRatedPostIds = JSON.parse(userRatedPostIds);
} catch (err) {
console.error(err);
return false;
}
} else {
return false;
}
if(userRatedPostIds.indexOf(1365771) >= 0) {
return true;
} else {
return false;
}
}
function getRatingCountByPostId(postId) {
return new Promise(function(resolve, reject) {
pureJSAjaxGet(
getRatingCountBaseURL + postId + ‘/rating/count’,
function(data) {
try {
data = JSON.parse(data);
if (data.meta_value) {
resolve(data.meta_value);
}
reject(“Failed to fetch rating count for the post:” + postId);
} catch (err) {
reject(“Failed to fetch rating count for the post:” + postId);
}
},
function(err) {
reject(“Failed to fetch rating count for the post:” + postId);
}, true);
});
}
function showErrorMessage(messageType) {
var messageContainerId = ‘#’ + messageType + ‘-error’;
$(messageContainerId).classList.remove(‘hidden’);
window.setInterval(function () {
$(messageContainerId).classList.add(“hidden”);
}, 5000);
}
if (!isPostRatedByUser()) {
getRatingCountByPostId(1365771)
.then(function(ratingCount) {
if (ratingCount < 10) {
$(“#post-rating-widget”).classList.remove(“hidden”);
}
})
.catch(function(err){
console.error(err);
})
}
More from Sportskeeda
Fetching more content…