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
Site Map
Site Map
Digital Energy
Industry
HMI
Industrial Components
PLC
Servo
Soft Starter
VFD
Power Components
Special Offers
My Account
Account Information
Password
Address Book
Order History
Downloads
Shopping Cart
Checkout
Search
Information
Projects
Training Center
Careers
Schneider
About Us
Delivery Information
Privacy Policy
Terms & Conditions
Contact Us
Projects
Panels
UPS
Motion
Automation
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 );}});