Embassy of Ethiopia “}; /* ]]]]> */ ]]> i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),”fullscreen”==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(“,”);if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split(“%”).length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f 0 && $(‘.responsive-menu-button-text’).length > 0) { $(‘.responsive-menu-button-text-open’).hide(); $(‘.responsive-menu-button-text’).show(); } }, setButtonTextOpen: function() { if($(‘.responsive-menu-button-text’).length > 0 && $(‘.responsive-menu-button-text-open’).length > 0) { $(‘.responsive-menu-button-text’).hide(); $(‘.responsive-menu-button-text-open’).show(); } }, triggerMenu: function() { this.isOpen ? this.closeMenu() : this.openMenu(); }, triggerSubArrow: function(subarrow) { var sub_menu = $(subarrow).parent().siblings(‘.responsive-menu-submenu’); var self = this; if(this.accordion == ‘on’) { /* Get Top Most Parent and the siblings */ var top_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).last().siblings(‘.responsive-menu-item-has-children’); var first_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).first().siblings(‘.responsive-menu-item-has-children’); /* Close up just the top level parents to key the rest as it was */ top_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); /* Set each parent arrow to inactive */ top_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); /* Now Repeat for the current item siblings */ first_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); first_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); } if(sub_menu.hasClass(‘responsive-menu-submenu-open’)) { sub_menu.slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.inactiveArrow); $(subarrow).removeClass(‘responsive-menu-subarrow-active’); } else { sub_menu.slideDown(self.subMenuTransitionTime, ‘linear’).addClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.activeArrow); $(subarrow).addClass(‘responsive-menu-subarrow-active’); } }, menuHeight: function() { return $(this.container).height(); }, menuWidth: function() { return $(this.container).width(); }, wrapperHeight: function() { return $(this.wrapper).height(); }, setWrapperTranslate: function() { switch(this.animationSide) { case ‘left’: translate = ‘translateX(‘ + this.menuWidth() + ‘px)’; break; case ‘right’: translate = ‘translateX(-‘ + this.menuWidth() + ‘px)’; break; case ‘top’: translate = ‘translateY(‘ + this.wrapperHeight() + ‘px)’; break; case ‘bottom’: translate = ‘translateY(-‘ + this.menuHeight() + ‘px)’; break; } if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:translate}); $(‘html, body’).css(‘overflow-x’, ‘hidden’); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:translate}); } }, clearWrapperTranslate: function() { var self = this; if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:”}); setTimeout(function() { $(‘html, body’).css(‘overflow-x’, ”); }, self.animationSpeed); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:”}); } }, init: function() { var self = this; $(this.trigger).on(this.triggerTypes, function(e){ e.stopPropagation(); self.triggerMenu(); }); $(this.trigger).mouseup(function(){ $(self.trigger).blur(); }); $(‘.responsive-menu-subarrow’).on(‘click’, function(e) { e.preventDefault(); e.stopPropagation(); self.triggerSubArrow(this); }); $(window).resize(function() { if($(window).width() > self.breakpoint) { if(self.isOpen){ self.closeMenu(); } } else { if($(‘.responsive-menu-open’).length>0){ self.setWrapperTranslate(); } } }); if(this.closeOnLinkClick == ‘on’) { $(this.linkElement).on(‘click’, function(e) { e.preventDefault(); /* Fix for when close menu on parent clicks is on */ if(self.itemTriggerSubMenu == ‘on’ && $(this).is(‘.responsive-menu-item-has-children > ‘ + self.linkElement)) { return; } old_href = $(this).attr(‘href’); old_target = typeof $(this).attr(‘target’) == ‘undefined’ ? ‘_self’ : $(this).attr(‘target’); if(self.isOpen) { if($(e.target).closest(‘.responsive-menu-subarrow’).length) { return; } self.closeMenu(); setTimeout(function() { window.open(old_href, old_target); }, self.animationSpeed); } }); } if(this.closeOnBodyClick == ‘on’) { $(document).on(‘click’, ‘body’, function(e) { if(self.isOpen) { if($(e.target).closest(‘#responsive-menu-container’).length || $(e.target).closest(‘#responsive-menu-button’).length) { return; } } self.closeMenu(); }); } if(this.itemTriggerSubMenu == ‘on’) { $(‘.responsive-menu-item-has-children > ‘ + this.linkElement).on(‘click’, function(e) { e.preventDefault(); self.triggerSubArrow($(this).children(‘.responsive-menu-subarrow’).first()); }); } if (jQuery(‘#responsive-menu-button’).css(‘display’) != ‘none’) { $(‘#responsive-menu-button,#responsive-menu a.responsive-menu-item-link, #responsive-menu-wrapper input’).focus( function() { $(this).addClass(‘is-active’); $(‘html’).addClass(‘responsive-menu-open’); $(‘#responsive-menu li’).css({“opacity”: “1”, “margin-left”: “0”}); }); $(‘#responsive-menu-button, a.responsive-menu-item-link,#responsive-menu-wrapper input’).focusout( function() { if ( $(this).last(‘#responsive-menu-button a.responsive-menu-item-link’) ) { $(this).removeClass(‘is-active’); $(‘html’).removeClass(‘responsive-menu-open’); } }); } $(‘#responsive-menu a.responsive-menu-item-link’).keydown(function(event) { console.log( event.keyCode ); if ( [13,27,32,35,36,37,38,39,40].indexOf( event.keyCode) == -1) { return; } var link = $(this); switch(event.keyCode) { case 13: link.click(); break; case 27: var dropdown = link.parent(‘li’).parents(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); dropdown.prev().focus(); } break; case 32: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.show(); dropdown.find(‘a, input, button, textarea’).first().focus(); } break; case 35: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).last().focus(); break; case 36: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).first().focus(); break; case 37: case 38: event.preventDefault(); event.stopPropagation(); if ( link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; case 39: case 40: event.preventDefault(); event.stopPropagation(); if( link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; } }); } }; ResponsiveMenu.init(); });]]>
ABOUT EMBASSY
The Embassy of the Federal Democratic Republic of Ethiopia in Washington DC is the main diplomatic mission of the Federal Democratic Republic of Ethiopia in the United States of America. The mission of the Embassy is to maintain and advance the bilateral relations between Ethiopia and the United States and to serve Ethiopian Citizens in the United States.
The Embassy carries out government-to-government and people-to-people diplomacy and serves as a vital resource for Ethiopians in the United States of America and the Ethiopian-American community. Besides, the Embassy promotes Ethiopia’s cultural values, untapped tourism potentials as well as trade and investment opportunities. The Embassy is also accredited to Mexico and Jamaica.
CONSULAR SERVICES
The Embassy of Ethiopia in Washington DC provides consular services to all members of the Ethiopian Diaspora and other nationals residing or/and temporarily staying in the United States of America. This section provides a general overview and information on some of the consular services for all customers who would like to travel to Ethiopia and others seeking various consular services.
POWER OF ATTORNEY
Ethiopian Power of Attorney (E-POA) services is the critical link between the Ethiopian diaspora community and mainland Ethiopia. For anyone trying ..
Or Call E-POA : +1 202 800 4410
VISA
All foreign nationals who seek to enter Ethiopia require a visa. However, Ethiopian origin ID holders and travellers who arrive in Addis Ababa Bole International….
PASSPORT SERVICE
The Embassy of Ethiopia is currently issuing only a new Electronic passport that requires mandatory finger print…
Authentication & Legalization Service
All documents originating in Ethiopia should be authenticated by the Ministry of Foreign Affairs of Ethiopia.
LAISSEZ PASSER
The Embassy of Ethiopia issues a laissez-passer for Ethiopian…
OTHER SERVICES
The Government of Ethiopia depends upon Ethiopian Airlines to set the regulations for the transport of human remains..
NEWS AND MEDIA
Read the latest news and analysis on the activity of the embassy and current affairs in Ethiopia.
Ethiopia yesterday reported 882 new COVID19 cases out of 7,518 laboratory tests conducted in 24 hours. This brings the total
The Government of Ethiopia condemns sexual violence in all circumstances and including in situations of conflict and has a zero-tolerance
አንዳንድ አካላት በአሜሪካ ዋሽንግተን ዲ.ሲ. የኢትዮጵያ ኤምባሲ አገልግሎት አቁሟል የሚል የተሳሳተ መረጃ እያሰራጩ እንደሆነ ሰምተናል! ነገር ግን ኤምባሲያችን መደበኛ አገልግሎት
This includes make eliminates the revolution slider libraries, and make it not work.”; errorMessage += “
To fix it you can:
1. In the Slider Settings -> Troubleshooting set option: Put JS Includes To Body option to true.”; errorMessage += “
2. Find the double jquery.js include and remove it.”; errorMessage = “” + errorMessage + “”; jQuery(sliderID).show().html(errorMessage); } ]]>
@2021 Ethiopian Embassy in Washington DC. Site Developed and Maintained by Walia Technologies | Privacy Policy
GIPHY App Key not set. Please check settings