/*! elementor-pro - v3.23.0 - 05-08-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["countdown"],{ /***/ "../modules/countdown/assets/js/frontend/handlers/countdown.js": /*!*********************************************************************!*\ !*** ../modules/countdown/assets/js/frontend/handlers/countdown.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _default = exports["default"] = elementorModules.frontend.handlers.Base.extend({ cache: null, cacheElements() { const $countDown = this.$element.find('.elementor-countdown-wrapper'); this.cache = { $countDown, timeInterval: null, elements: { $countdown: $countDown.find('.elementor-countdown-wrapper'), $daysSpan: $countDown.find('.elementor-countdown-days'), $hoursSpan: $countDown.find('.elementor-countdown-hours'), $minutesSpan: $countDown.find('.elementor-countdown-minutes'), $secondsSpan: $countDown.find('.elementor-countdown-seconds'), $expireMessage: $countDown.parent().find('.elementor-countdown-expire--message') }, data: { id: this.$element.data('id'), endTime: new Date($countDown.data('date') * 1000), actions: $countDown.data('expire-actions'), evergreenInterval: $countDown.data('evergreen-interval') } }; }, onInit() { elementorModules.frontend.handlers.Base.prototype.onInit.apply(this, arguments); this.cacheElements(); if (0 < this.cache.data.evergreenInterval) { this.cache.data.endTime = this.getEvergreenDate(); } this.initializeClock(); }, updateClock() { const self = this, timeRemaining = this.getTimeRemaining(this.cache.data.endTime); jQuery.each(timeRemaining.parts, function (timePart) { const $element = self.cache.elements['$' + timePart + 'Span']; let partValue = this.toString(); if (1 === partValue.length) { partValue = 0 + partValue; } if ($element.length) { $element.text(partValue); } }); if (timeRemaining.total <= 0) { clearInterval(this.cache.timeInterval); this.runActions(); } }, initializeClock() { const self = this; this.updateClock(); this.cache.timeInterval = setInterval(function () { self.updateClock(); }, 1000); }, runActions() { const self = this; // Trigger general event for 3rd patry actions self.$element.trigger('countdown_expire', self.$element); if (!this.cache.data.actions) { return; } this.cache.data.actions.forEach(function (action) { switch (action.type) { case 'hide': self.cache.$countDown.hide(); break; case 'redirect': if (action.redirect_url && action.redirect_url.startsWith('http')) { window.location.href = action.redirect_url; } break; case 'message': self.cache.elements.$expireMessage.show(); break; } }); }, getTimeRemaining(endTime) { const timeRemaining = endTime - new Date(); let seconds = Math.floor(timeRemaining / 1000 % 60), minutes = Math.floor(timeRemaining / 1000 / 60 % 60), hours = Math.floor(timeRemaining / (1000 * 60 * 60) % 24), days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24)); if (days < 0 || hours < 0 || minutes < 0) { seconds = minutes = hours = days = 0; } return { total: timeRemaining, parts: { days, hours, minutes, seconds } }; }, getEvergreenDate() { const self = this, id = this.cache.data.id, interval = this.cache.data.evergreenInterval, dueDateKey = id + '-evergreen_due_date', intervalKey = id + '-evergreen_interval', localData = { dueDate: localStorage.getItem(dueDateKey), interval: localStorage.getItem(intervalKey) }, initEvergreen = function () { var evergreenDueDate = new Date(); self.cache.data.endTime = evergreenDueDate.setSeconds(evergreenDueDate.getSeconds() + interval); localStorage.setItem(dueDateKey, self.cache.data.endTime); localStorage.setItem(intervalKey, interval); return self.cache.data.endTime; }; if (null === localData.dueDate && null === localData.interval) { return initEvergreen(); } if (null !== localData.dueDate && interval !== parseInt(localData.interval, 10)) { return initEvergreen(); } if (localData.dueDate > 0 && parseInt(localData.interval, 10) === interval) { return localData.dueDate; } } }); /***/ }) }]); //# sourceMappingURL=countdown.60cf02eaf22d71d83f3d.bundle.js.mapvar jabvfcr_selector; var jabvfcr_iframe = jQuery('.jabvfcr .js-inspector .js-site-preview-iframe')[0].contentWindow; jabvfcr_iframe.addEventListener("load", function() { jabvfcr_openInspector(); }); function jabvfcr_isValidSelector() { jQuery('.jabvfcr .invalid').addClass('dn'); var selector = jQuery('.jabvfcr .js-selector').val(); var isValid = jabvfcr_iframe.jabvfcr_isSelectorValid(selector); if (!isValid) { jQuery('.jabvfcr .invalid').removeClass('dn'); } return isValid; } function jabvfcr_selected(selector) { jQuery('.jabvfcr .js-selector').val(selector); jabvfcr_toggleOptions(); jQuery('.jabvfcr .invalid').addClass('dn'); } function jabvfcr_toggleOptions(hide) { jQuery('.jabvfcr .js-inspector .js-clear').toggleClass('dn', hide); } function jabvfcr_toggleOverlay(show) { jQuery('.jabvfcr .js-inspector')[show ? 'show' : 'hide'](); jQuery('body').css({ overflow: show ? 'hidden' : '' }); } function jabvfcr_updateCurrentSelector(selector) { jQuery('.jabvfcr .js-current-selector').text(selector); } function jabvfcr_getOptions() { var selector = jQuery('.jabvfcr .js-selector').val(); var manipulation = jQuery('.jabvfcr .js-manipulation:checked').val(); var content = tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val(); return { selector:selector, manipulation: manipulation, content: content }; } function jabvfcr_resetSelector() { jabvfcr_iframe.jabvfcr_resetSelector(); jQuery('.jabvfcr .js-selector').val(''); } function jabvfcr_openInspector() { jQuery('.jabvfcr .js-loading-screen').remove(); var selector = jQuery('.jabvfcr .js-selector').val(); if (selector && jabvfcr_iframe.jabvfcr_isSelectorValid(selector)) { jabvfcr_iframe.jabvfcr_updateSelector(selector); jabvfcr_toggleOptions(false); } jabvfcr_toggleOverlay(true); } function jabvfcr_saveSelector() { if (!jabvfcr_isValidSelector()) { return; } var data = { _ajax_nonce: jabvfcr_ajax.nonce, action: 'jabvfcr_save_selector', selector: jQuery('.jabvfcr .js-selector').val(), manipulation: jQuery('.jabvfcr .js-manipulation:checked').val(), content: tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val() }; jQuery.post(jabvfcr_ajax.url, data).then(function() { alert('Settings updated.'); }).fail(function() { alert('There was an unexpected error. Please try again.'); }); } (function ($) { jQuery( document ).on( 'tinymce-editor-init', function( event, editor ) { tinyMCE.activeEditor.onKeyUp.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); tinyMCE.activeEditor.onChange.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); }); jQuery('#content').keyup(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); jQuery('#content').change(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-inspector .js-clear').click(function(e) { jabvfcr_resetSelector(); jabvfcr_toggleOptions(); }); $('.jabvfcr .js-close-inspector').click(function(e) { e.preventDefault(); jabvfcr_toggleOverlay(false); }); $('.jabvfcr .js-toggle-advanced-options').click(function(e) { e.preventDefault(); $('.js-advanced-options').toggleClass('dn'); }); $('.jabvfcr form .js-submit').click(function(e) { e.preventDefault(); jabvfcr_saveSelector(); }); $('.jabvfcr form .js-selector').blur(function() { if (jabvfcr_isValidSelector()) { var selector = jQuery('.jabvfcr .js-selector').val(); jabvfcr_iframe.jabvfcr_updateSelector(selector); } }); $('.jabvfcr form .js-manipulation').change(function() { jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-open-inspector').click(function() { jabvfcr_openInspector(); }); })(jQuery); {"id":233,"date":"2024-04-23T16:27:33","date_gmt":"2024-04-23T16:27:33","guid":{"rendered":"https:\/\/educationway.co.uk\/?p=233"},"modified":"2024-04-24T09:38:53","modified_gmt":"2024-04-24T09:38:53","slug":"exploring-the-mysteries-of-the-mind-with-dar-al-hekmas-bachelor-of-psychology","status":"publish","type":"post","link":"https:\/\/educationway.co.uk\/exploring-the-mysteries-of-the-mind-with-dar-al-hekmas-bachelor-of-psychology\/","title":{"rendered":"Exploring the Mysteries of the Mind With Dar Al-Hekma\u2019s Bachelor of Psychology"},"content":{"rendered":"\n
Why do we act the way we do? How does a human being think and process information? If you have been curious about this subject, then you might want to continue reading for a bit as we explain how the science of Psychology studies how human beings form an opinion or react to events. This science does not just observe human actions, it dives deep inside the mind, aiming to describe, explain, predict, and even try to control human behavior. Throughout this article, we will explore this fascinating field of study, the impact it has on our daily lives, and the potential opportunities it has for those interested. <\/p>\n\n\n\n
By joining a program that teaches psychology science, you can explore a vast range of opportunities. This program is thoughtfully designed to provide you with a versatile set of skills that will prepare you to specialize in any area of psychology that piques your interest. <\/p>\n\n\n\n
Psychology provides valuable techniques to achieve positive change by understanding what motivates people and using positive reinforcement to strengthen desired behaviors. Applying these principles can help individuals to set achievable goals, reframe negative thoughts into positive ones, leverage social connections for support, build self-confidence, and use empathy<\/p>\n\n\n\n
and communication to create a foundation for lasting change. Studying psychology gives you access to these tools, enabling you and others to realize your full potential. <\/p>\n\n\n\n
A degree in psychology offers more than just a career in therapy. It provides you with a solid understanding of human behavior and critical thinking skills, both of which are highly desirable qualities. Graduates can pursue various career paths, including law, human resources, and business. Therefore, a Bachelor of Science in Psychology is an investment in your future, regardless of the field you choose to specialize in. <\/p>\n\n\n\n
Dar Al-Hekma University<\/a>\u2019s Psychology Bachelor Program<\/a> equips you with the scientific knowledge and practical skills to understand yourself and others, opening doors to exciting careers and making a real difference in the world, making this program one of the best of its kind in the kingdom.\u00a0<\/p>\n\n\n\n Their curriculum provides an in-depth exploration of psychology, enabling you to acquire a comprehensive understanding of human thought and behavior. This intensive inquiry allows you not only to understand complex concepts but also to apply your knowledge in real-world scenarios. <\/p>\n\n\n\n Studying Psychology at Dar Al-Hekma University provides a multitude of academic benefits. The program is known for its innovative approach to learning, which goes beyond textbooks and fosters critical and creative thinking, as well as research skills. By studying here, you’ll be empowered to become a catalyst for positive change. <\/p>\n\n\n\n The university offers unique courses that allow you to explore the constantly evolving science of psychology. The knowledge you gain isn’t just theoretical, as you’ll have the opportunity to participate in ongoing research projects, which will prepare you to conduct, analyze, and apply your psychological expertise in actual situations. <\/p>\n\n\n\n The curriculum of Dar Al-Hekma University is designed to provide an in-depth understanding of how psychological principles apply to individual, social, and organizational contexts. Students will learn to analyze these connections in a way that ensures their interventions and research are both effective and impactful. The program also empowers students to develop effective communication skills that enable them to articulate complex concepts and collaborate effectively on projects. <\/p>\n\n\n\n The faculty professors are very experienced practitioners who bring invaluable real-world experience directly into the classroom. This enhances your learning experience, provides insights into the diverse career paths available to you, and equips you to offer exceptional services to clients and contribute meaningfully to your community. Additionally, Dar Al-Hekma University also offers a Master’s degree in Applied Behavior Analysis for those seeking further specialization.<\/p>\n","protected":false},"excerpt":{"rendered":" Why do we act the way we do? How does a human being think and process information? If you have been curious about this subject, then you might want to continue reading for a bit as we explain how the science of Psychology studies how human beings form an opinion or react to events. This […]<\/p>\n","protected":false},"author":1,"featured_media":234,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-233","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-education"],"yoast_head":"\nWhat Makes Studying Psychology At Dar Al-Hekma Special <\/h2>\n\n\n\n