• 02-999-1553
  • info@lemaanachai.org

אירועים מיוחדים

  • הצטרפו לחוויה ותזכו במצווה!

    • התאריך טרם נקבע

השותפים שלנו

function do_mailto () { var regEx = /(\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)/; $('*').filter(function() { if ($(this).prop('nodeName').search(/(STYLE|SCRIPT|A|TITLE)/) == -1 && $(this).text().trim() !== '') { for (var i = 0; i < this.childNodes.length; i++) if (this.childNodes[i].nodeType == 3 && this.childNodes[i].nodeValue.search(regEx) > -1) { inserts = this.childNodes[i].nodeValue.replace(regEx, ":::$1:::") parts = inserts.split(":::") const beforeNode = document.createTextNode(parts[0]); const afterNode = document.createTextNode(parts[2]); newlink = document.createElement("a"); newlink.innerHTML = parts[1] newlink.setAttribute("href", "mailto:" + parts[1]) this.childNodes[i].replaceWith(beforeNode, newlink, afterNode) } } }); } $( document ).ready(function() { do_mailto() });