Braided Control Cable ERFLEX 130-YSY/SYLYQY 3CX1.5MM-727OD4

★ ★ ★ ★ ☆ 4.2 (91 reviews)

Braided Control Cable ERFLEX 130-YSY/SYLYQY 3CX1.5MM /MTR

QAR 4.20

QAR 5.75 26.96% off

Product Details

  • Product Code

    727OD4

  • Brand

    ERSE >

  • Quantity

    1810 MTR

  • Model Number

    ERFLEX 130-YSY/SYLYQY

  • Manufacturing Country

    TURKEY

  • Dimensions

    3CX1.5MM

  • Product Available Country

    Qatar

  • Documents

    Not Available

Product Description

Never miss a deal!
Subscribe to Surplus Newsletter.

const toggleEyeVisibility = () => { eyeSpan.style.display = pwdInput.value ? 'block' : 'none'; }; // ---- toggle password visibility ---- const togglePassword = () => { const isPassword = pwdInput.type === 'password'; pwdInput.type = isPassword ? 'text' : 'password'; eyeIcon.classList.toggle('fa-eye', isPassword); eyeIcon.classList.toggle('fa-eye-slash', !isPassword); }; // initial check toggleEyeVisibility(); // listeners pwdInput.addEventListener('input', toggleEyeVisibility); eyeSpan.addEventListener('click', togglePassword); }); });