.push-nav-menu .push-menu-item a {
font-weight:700;
}
(function(require) {
require(['modules/01-topNav.min','modules/01-topNav-inception-push-menu.min'], function(topNav, pushMenu){
topNav();
pushMenu();
var $location = window.location.origin;
var getCartInfomation = {
"async": true,
"crossDomain": true,
"url": $location + "/b2c/eshop/getShoppingCart",
"method": "GET",
"processData": false,
};
$.ajax(getCartInfomation).done(function(response) {
if (response.numberOfItemsInCart == 0) {
$('.badge-top').addClass('hidden');
} else {
$('.badge-top').html(response.numberOfItemsInCart);
$('.badge-top').removeClass('hidden');
}
}).error(function(data) {});
function updateQueryStringParam(key, value) {
baseUrl = [location.protocol, '//', location.host, location.pathname].join('');
urlQueryString = document.location.search;
var newParam = key + '=' + value,
params = '?' + newParam;
if (urlQueryString) {
keyRegex = new RegExp('([?&])' + key + '[^&]*');
if (urlQueryString.match(keyRegex) !== null) {
params = urlQueryString.replace(keyRegex, "$1" + newParam);
} else {
params = urlQueryString + '&' + newParam;
}
}
return baseUrl + params;
}
function updateQueryStringFilterParam(uri, key, value) {
var re = new RegExp("([?&])" + key + "=.*?(&|$)", "i");
var separator = uri.indexOf('?') !== -1 ? "&" : "?";
if (uri.match(re)) {
return uri.replace(re, '$1' + key + "=" + value + '$2');
}
else {
return uri + separator + key + "=" + value;
}
}
window.changeLangAction = function() {
var currnetURL = window.location.href;
var currentLang = $('html').attr('lang');
var paramName = 'locale';
var paramNameLang = 'lang';
var filerParama = 'filtersParam';
if (currnetURL.indexOf('/eshop/') > 0) {
if (currentLang == 'en' || currentLang == 'EN') {
newURLEShop = updateQueryStringParam(paramName, "AR");
} else if (currentLang == 'ar' || currentLang == 'AR') {
newURLEShop = updateQueryStringParam(paramName, "EN");
}
newURLEShopupdated = updateQueryStringFilterParam(newURLEShop,filerParama, "");
window.location.href = newURLEShopupdated;
}else if (currnetURL.indexOf('/addon/') > 0) {
var getCurrentURL = window.location.href;
var getIndexForArabic = getCurrentURL.indexOf('en');
var getIndexForEnglish = getCurrentURL.indexOf('ar');
var resultString = '';
if (getIndexForArabic != -1) {
resultString = getCurrentURL.replace("en", "ar");
window.location.href = resultString;
window.location.reload();
} else if (getIndexForEnglish != -1) {
resultString = getCurrentURL.replace("ar", "en");
window.location.href = resultString;
window.location.reload();
}
}else {
var getCurrentURL = window.location.href;
var getIndexForArabic = getCurrentURL.indexOf('/en/');
var getIndexForEnglish = getCurrentURL.indexOf('/ar/');
var resultString = '';
if (getIndexForArabic != -1) {
resultString = getCurrentURL.replace("/en/", "/ar/");
window.location.href = resultString;
} else if (getIndexForEnglish != -1) {
resultString = getCurrentURL.replace("/ar/", "/en/");
window.location.href = resultString;
} else {
return false;
}
}
}
});
}(require))
Accessibility Statement
Etisalat is committed to making this website accessible to the broadest possible audience, regardless of technology or physical capability.
learn more
Colour : Etisalat colours
(function(require) {
require(['jquery', 'modules/23-pop-up-accessibility.min'], function($, popup) {
popup();
$(document).ready(function() {
if (navigator.userAgent.match(/msie/i) || navigator.userAgent.match(/trident/i)) {
if (!sessionStorage.ieBlocked) {
var ieBlockHtml = ' ' + '
' +
' ' +
'
';
$('body').append(ieBlockHtml);
$('.ie-blocked-div').fadeIn();
$(document).on('click', '.closeBlockPop', function() {
sessionStorage.setItem("ieBlocked", true);
$('.ie-blocked-div').fadeOut();
})
}
}
});
});
}(require))
(function(require) {
require(['jquery'], function(ITN) {
});
}(require))
(function(require){
require(['modules/02-main-mega-menu.min','modules/02-search-4-0.min'], function(menu, search){
menu();
search();
var $location = window.location.origin;
var oldAccountName = $('.accountName:first').text();
var getUserInfomation = {
"async": true,
"crossDomain": true,
"url": $location + "/b2c/getUserInfo.service",
"method": "POST",
"headers": {
"Content-Type": "application/json",
"cache-control": "no-cache"
},
"processData": false,
"data": "{}"
};
/*
$.ajax(getUserInfomation).done(function (response) {
var prasedJSON = JSON.parse(response);
$('.accountName').text(prasedJSON["login"]);
$('a[href$="ecareLogin.html"]').parent('li').addClass('hidden');
$('.loggedInActions').removeClass('hidden');
}).error(function (data) {
});*/
if(localStorage.getItem('currentUserAccountNumber')){
var primaryNumber = localStorage.getItem('currentUserAccountNumber');
$('.accountName').text(primaryNumber);
$('a[href$="ecareLogin.html"]').parent('li').addClass('hidden');
$('.loggedInActions').removeClass('hidden');
} else {
$('a[href$="ecareLogin.html"]').parent('li').removeClass('hidden');
$('.loggedInActions').addClass('hidden');
}
var getshoppingCart = {
"async": true,
"crossDomain": true,
"url": $location + "/b2c/eshop/getShoppingCart",
"method": "GET"
};
$.ajax(getshoppingCart).done(function (response) {
if (response.numberOfItemsInCart != 0) {
$('.cart-count').removeClass('hide');
$('.cart-count').html(response.numberOfItemsInCart)
}
}).error(function (data) {
});
function logOutclick(){
var settingsUserLogOut = {
"async": true,
"crossDomain": true,
"url": $location + "/b2c/logoutUser.service",
"method": "POST",
"headers": {
"Content-Type": "application/json",
"cache-control": "no-cache"
},
"processData": false,
"data": "{}"
};
$.ajax(settingsUserLogOut).done(function(responseLogout) {
localStorage.removeItem('currentUserAccountNumber');
location.reload();
}).fail(function(data) {});
localStorage.removeItem('currentUserAccountNumber');
}
$(".logoutAction").on('click', function(e) {
logOutclick();
});
$('.nav-lang').on('click', function(){
var getCurrentURL = window.location.href;
var getIndexForArabic = getCurrentURL.indexOf('/en/');
var getIndexForEnglish = getCurrentURL.indexOf('/ar/');
var resultString = '';
if(getIndexForArabic != -1){
resultString = getCurrentURL.replace("/en/", "/ar/");
window.location.href = resultString;
} else if(getIndexForEnglish != -1) {
resultString = getCurrentURL.replace("/ar/", "/en/");
window.location.href = resultString;
} else {
return false;
}
});
function menuItemClicked(target){
var $self = target;
var clickedItemURL = $self.attr('href');
var linkText = $self.text().trim();
dataLayer.push({
'event': 'menuitems',
'info1': 'menuitems',
'info2': 'click',
'info3': linkText
});
window.location = clickedItemURL;
}
$('.nav-drill .highlighted .nav-items ul .nav-item .nav-link').off('click').on('click', function(e){
menuItemClicked($(this));
if($(this).hasClass('logoutAction')){
logOutclick();
}
});
$('.nav-right .sub-account-menu-wrap ul li a').off('click').on('click', function(e){
menuItemClicked($(this));
if($(this).hasClass('logoutAction')){
logOutclick();
}
});
});
}(require))
Welcome to Etisalat Enquiry Service
Search by people or business
Emergency service numbers
(function(require){
require(['modules/00-quick-links.min'], function(etisalatApp){
etisalatApp();
});
}(require))
@media (min-width: 768px){
.col-md-3 {
flex: 0 0 auto !important;
width: 25% !important;
}
}
@media (min-width: 768px){
.col-md-9 {
flex: 0 0 auto !important;
width: 75% !important;
}
}
.footer-links-logo-section .etisalat-logo svg {
max-height: 110px;
}
© 2022 Etisalat. All Rights Reserved.
© 2022 Etisalat. All Rights Reserved.
(function (require) {
require(['jquery', 'modules/promotional-banner-popup.min'], function ($, promotionalBannerPopup) {
promotionalBannerPopup();
});
}(require))
if (typeof(Storage) !== "undefined"){
if(sessionStorage.getItem("isWebView")==='true'){
var elem = document.querySelectorAll('.top-nav-section, .main-mega-menu-desktop, .quick-links-section, .footer-links-logo-section');
elem.forEach(function(item){item.hidden=true})
document.querySelector('body').style.margin = 0
}
}
Breakpoint: xs ( 375px ), Viewport width:
Breakpoint: ms ( 375px ), Viewport width:
Breakpoint: sm ( 768px ), Viewport width:
Breakpoint: md ( 992px ), Viewport width:
Breakpoint: lg ( 1440px ), Viewport width:
Breakpoint: xl ( 1600px ), Viewport width:
(function (require) {
require(['jquery.min', 'app.core.min', 'demo.min', 'jquery.mockjax.min', 'app.mockjax.min'], function ($, app, demo, mockjax, appMockjax) {
demo();
mockjax();
appMockjax();
});
}(require))
Page 1
supericon-success
Created with Sketch.
icon-live chat
Created with Sketch.
icon-call us
Created with Sketch.
icon-faqs
Created with Sketch.