12 Rules For Life - Jordan Peterson (2025)

  1. Librari
  2. Libra
  3. 12 Rules For Life - Jordan Peterson

12 Rules For Life - Jordan Peterson (3)

12 Rules For Life - Jordan Peterson

14.30 € Disponueshmëria: I padisponueshëm

Përshkrimi

Përshkrimi është duke u përpunuar, ndërkohë mund të shikoni specifikat teknike, apo kontaktoni në chat, email dhe messenger për detaje të mëtutjeshme.Ju faleminderit për mirëkuptim.

Cilësitë

GTIN
  • 9780141988511
  • 9780141988511
Shtëpia botuese Penguin Books
Prodhuesi Penguin Books
Kodi i produktit 109libd

Vlerësimet0

(0 vlerësime)

Nuk ka ende asnjë vlerësim

'; } else { skeletonHtml = ''; } $('#also-pur').html(skeletonHtml); }, success: function (data) { //add condition if data is empty if (!data || Object.keys(data).length === 0) { $('#also-pur').css('min-height', '0px'); $('#also-pur').html(''); } else { $('#also-pur').html(data); showOneByOne($('.halfShown')); } }, error: function (err1, err2) { //console.log(JSON.stringify(err1) + '\n' + JSON.stringify(err2)); } }); } catch (ex) { //console.log(JSON.stringify(ex)); } $.ajax({ url: '/Catalog/LinkedProducts', method: 'POST', data: { pId: '1043607', parId: '0', attrId: '0' }, success: function (data) { $('.linked-products').html(data); var isMobile = false; if (!isMobile) { $('.v-slider').slick({ infinite: false, cssEase: 'ease-in-out', speed: 300, dots: false, lazyLoad: 'ondemand', useCSS: true, useTransform: true, waitForAnimate: true, prevArrow: '', nextArrow: '', slidesToShow: 6, slidesToScroll: 6, arrows: true, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 4, slidesToScroll: 4 } } ] }) } }, error: function(err1, err2){ //console.log('Error: \n' + JSON.stringify(err1) + '\n' + JSON.stringify(err2)); } }); var page = 0, frst = 0, requestReturned = true, repeat = 0; window.addEventListener('scroll', function() { if (requestReturned && document.getElementById('infinit-scroll-func-product') && frst && (window.innerHeight + window.pageYOffset) >= (document.body.offsetHeight - 200) ) document.getElementById('infinit-scroll-func-product').click(); }); try{ $.ajax({ url: '/Product/RelatedProducts', data: { area: '', pId: '1043607', cIds: cIds }, beforeSend: function () { // Show skeleton var isMobile = false; var skeletonHtml; if (isMobile) { skeletonHtml = ''; } else { skeletonHtml = ''; } $('#related-products').html(skeletonHtml); }, success: function (data) { var temporaryElement = document.createElement('div'); if (data != '') { temporaryElement.innerHTML = data; var items = [].slice.call(temporaryElement.querySelectorAll('.art-picture')), href = ''; items.forEach(function(item) { href = item.getAttribute('href'); item.setAttribute('href', href + "#ProdukteTeNgjashme"); }); } $('#related-products').html(temporaryElement.innerHTML); showOneByOne(document.querySelector('.halfShown')); page++; hideButtonIfRelatedProductsEmpty(); }, error: function(err1, err2){ } }); } catch(ex){ } // hide button show more products if related products doesnt show any function hideButtonIfRelatedProductsEmpty() { var relatedProductsDiv = $('#related-products'); var buttonToHide = $('#infinit-scroll-func-product'); var alsoPurchasedProducts = $('#also-pur'); if (relatedProductsDiv.length && relatedProductsDiv.html().trim() === '') { if (buttonToHide.length) { buttonToHide.hide(); } if (alsoPurchasedProducts) { alsoPurchasedProducts.css('margin-bottom', '50px'); } } } var $loader = $('#infinit-scroll-loader'); $('#infinit-scroll-func-product').click(function () { if (!requestReturned) return; if (!frst) frst = 1 && $('#footer, #infinit-scroll-func-product').hide(); $loader.show(); requestReturned = false; $.ajax({ url: '/Product/RelatedProductsScroll', data: { area: '', pId: '1043607', cIds: cIds, page: page }, success: function (data) { if (data != null && data !== '') { var temporaryElement = document.createElement('div'); temporaryElement.innerHTML = data; var items = [].slice.call(temporaryElement.querySelectorAll('.art-picture')), href = ''; if (items.length > 0) { items.forEach(function (item) { href = item.getAttribute('href'); item.setAttribute('href', href + "#ProdukteTeNgjashme"); var img = item.querySelector('img'); if (img) { img.setAttribute('src', "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); img.classList.add("img-hidden"); } }); $('#infinite-products > .artlist').append(temporaryElement.innerHTML); showOneByOne(document.querySelector('.halfShown')); dmp_pagination('1043607', '12 Rules For Life - Jordan Peterson', 'product', '', page); requestReturned = true; } else { $loader.hide(); $('#footer').show(); requestReturned = false; } } else if (data != null && data.trim() === '') { $('#footer').show(); if (repeat > 3) { requestReturned = false; $loader.hide(); $('#footer').show(); } else { repeat++; requestReturned = true; } //$('#infinit-scroll-func').hide() } else { $loader.hide(); } }, error: function () { requestReturned = false; $loader.hide(); } }); page++; return false; }); }); function ShowLinked(url, id, name) { try{ $("#content-change-loader").addClass("active"); $("html, body").animate({ scrollTop: 0 }, "slow"); $.ajax({ url: url, success: function(response){ setTimeout(function() { processAjaxData(response, 'GjirafaMall-' + name, id, url); }, 300); }, error: function(err1, err2){ } }); } catch(ex){ $("#content-change-loader").removeClass("active"); } } function processAjaxData(response, title, id, url){ try{ if(typeof response === 'undefined' || typeof title === 'undefined' || typeof id === 'undefined'){ return; } url = typeof url !== 'undefined' ? url : null; $('#content-center').html(response); setTimeout(function() { $("#content-change-loader").removeClass("active"); }, 300); document.title = title; GetCategoryList(id); if(url != null){ window.history.pushState({"html":response,"pageTitle":title, "id": id},"", url); } } catch(ex){ } } window.onpopstate = function(e){ if(e.state){ processAjaxData(e.state.html, e.state.pageTitle, e.state.id); } }; function GetCategoryList(id) { try{ $.ajax({ url: '/Product/ProductCategoryList', method: 'POST', data: { pid: id }, success: function(response){ $('.breadcrumb-container').replaceWith(response); }, error: function(err1, err2){ } }); } catch(ex){ //console.log(JSON.stringify(ex)); } } function trackGa() { ga('ec:addImpression', { // Provide product details in an impressionFieldObject. 'id': '', // Product ID (string). 'name': 'IuteCredit Banner', // Product name (string). 'category': 'Banner', // Custom dimension (string). 'list' : 'Banner Views' }); } function trackClickGa() { ga('send', { hitType: 'event', eventCategory: 'Banner', eventAction: 'click', eventLabel: 'IuteCredit' }); } if (document.querySelectorAll('.action-giftidea').length) document.querySelector('.action-giftidea').addEventListener('click', function (e) { e.preventDefault(); var url = this.href; popUpObject.init( '.giftideaPopUpContainer', url, false ); }); ////// FILL TEXT function fillNameInput() { var yourName = $('#YourName'); if ($(yourName).val() != "") { var id = $(yourName).attr('id'); $("[data-id='" + id + "']").text($(yourName).val()); $("[data-id='" + id + "']").removeClass('empty-name') } } $(document).on("change paste keyup", ".name-input", function () { var id = $(this).attr('id'); $("[data-id='" + id + "']").text($(this).val()); $("[data-id='" + id + "']").removeClass('empty-name'); if ($(this).val() == "") { $("[data-id='" + id + "']").addClass('empty-name') } }); var stickyHeader = document.querySelector('.scrollable-header'); var mainHeader = document.getElementById('header'); var mainHeaderTopOffset = mainHeader.offsetHeight; var stickyHeaderTopOffset = stickyHeader.offsetHeight; var prevScrollPosition = window.pageYOffset || document.documentElement.scrollTop; var isScrollingUp = false; var scrollableHeader = $('.scrollable-header').css.display == 'none'; window.addEventListener('scroll', function () { var currentScrollPosition = window.pageYOffset || document.documentElement.scrollTop; var scrollOffset = window.pageYOffset || document.documentElement.scrollTop; if (currentScrollPosition < prevScrollPosition) { isScrollingUp = true; } else { isScrollingUp = false; } prevScrollPosition = currentScrollPosition; if (currentScrollPosition >= 700 && !isScrollingUp) { stickyHeader.style.display = 'flex'; stickyHeader.style.position = 'fixed'; stickyHeader.style.top = (stickyHeaderTopOffset + mainHeaderTopOffset - 65) + "px"; stickyHeader.style.bottom = 'unset'; stickyHeader.style.zIndex = "10"; } else if (currentScrollPosition > 700 && isScrollingUp) { stickyHeader.style.display = 'flex'; stickyHeader.style.position = 'fixed'; stickyHeader.style.top = (stickyHeaderTopOffset + mainHeaderTopOffset - 65) + "px"; stickyHeader.style.bottom = 'unset'; } else { stickyHeader.style.display='none' ; stickyHeader.style.position = "absolute"; stickyHeader.style.left = 'null'; stickyHeader.style.top = 'unset'; stickyHeader.style.bottom = 'unset'; } }) var pdOfferActions = $('.pd-offer-actions'); $(document).ready(function () { if (window.innerWidth <= 850 && pdOfferActions ) { $('body').css({ 'padding-bottom':'80px' }); } else { $('body').css({ 'padding-bottom': '0' }); } })
12 Rules For Life - Jordan Peterson (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Horacio Brakus JD

Last Updated:

Views: 6475

Rating: 4 / 5 (71 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Horacio Brakus JD

Birthday: 1999-08-21

Address: Apt. 524 43384 Minnie Prairie, South Edda, MA 62804

Phone: +5931039998219

Job: Sales Strategist

Hobby: Sculling, Kitesurfing, Orienteering, Painting, Computer programming, Creative writing, Scuba diving

Introduction: My name is Horacio Brakus JD, I am a lively, splendid, jolly, vivacious, vast, cheerful, agreeable person who loves writing and wants to share my knowledge and understanding with you.