Shop Now
Your Cart
Follow Us:
English
English
عربي
EGP
الجنية المصري
EGP
EGP
الجنية المصري
EGP
$
الدولار الأمريكي
USD
Menu
Home
The SHOP
Power Components
Digital Energy
Industry
HMI
18
Industrial Components
891
PLC
194
Servo
51
Soft Starter
25
VFD
161
Projects
Automation
Motion
Panels
Training Center
Level 1 (Classic Control, Motors, PLC Basic)
Level 2 (Ac Drives, Instrumentation, PLC Advanced)
Level 3 (Ac Drives Advanced, Motion, PLC Expert, Scada)
About
Jobs
Contact
Login
Register
0 item(s) - 0.00 EGP
0
Your shopping cart is empty!
Login
Register
Account
Product Returns
Product Returns
Please complete the form below to request an RMA number.
Order Information
First Name
Last Name
E-Mail
Telephone
Order ID
Order Date
Product Information
Product Name
Product Code
Quantity
Reason for Return
Dead On Arrival
Faulty, please supply details
Order Error
Other, please supply details
Received Wrong Item
Product is opened
Yes
No
Faulty or other details
Back
I have read and agree to the
Terms & Conditions
Submit
document.addEventListener('DOMContentLoaded', function () { // Only show the button when the RFQ form exists on the product page const quotationForm = document.querySelector('#rfq-form-product'); if (!quotationForm) { return; } // Prevent duplicate buttons if (document.querySelector('#request-quotation-scroll')) { return; } // Create button const quoteButton = document.createElement('button'); quoteButton.id = 'request-quotation-scroll'; quoteButton.type = 'button'; quoteButton.className = 'btn request-quotation-scroll'; quoteButton.innerHTML = '
REQUEST QUOTATION'; // Smooth scroll quoteButton.addEventListener('click', function (e) { e.preventDefault(); const form = document.querySelector('#rfq-form-product'); if (!form) { return; } // Offset for sticky header const headerOffset = 120; const position = form.getBoundingClientRect().top + window.pageYOffset - headerOffset; window.scrollTo({ top: position, behavior: 'smooth' }); }); /* * Try to place it next to the QUESTION button */ const buttons = document.querySelectorAll( 'button, a.btn, .btn' ); let questionButton = null; buttons.forEach(function (button) { const text = button.textContent .trim() .toUpperCase(); if (text.includes('QUESTION')) { questionButton = button; } }); if (questionButton) { questionButton.insertAdjacentElement( 'afterend', quoteButton ); return; } /* * Fallback: * put it next to Add To Cart */ const cartButton = document.querySelector('#button-cart'); if (cartButton) { cartButton.insertAdjacentElement( 'afterend', quoteButton ); } });