import wixData from 'wix-data';
$w.onReady(function () {
// Dropdown ke options define karein
let options = [
{ label: "10 People - $200", value: "10_people_200" },
{ label: "11 People - $300", value: "11_people_300" },
{ label: "12 People - $400", value: "12_people_400" },
{ label: "13 People - $500", value: "13_people_500" }
];
// Dropdown me options set karein
$w("#quantityDropdown").options = options;
// Jab user dropdown select kare to value store karein
$w("#quantityDropdown").onChange((event) => {
let selectedValue = event.target.value;
console.log("Selected: ", selectedValue);
});
});
import { cart } from 'wix-stores';
$w("#quantityDropdown").onChange((event) => {
let selectedOption = event.target.value;
cart.addProducts([
{
productId: "your_product_id",
quantity: 1,
options: {
"Quantity": selectedOption
}
}
])
.then(() => {
console.log("Product added with quantity:", selectedOption);
})
.catch((error) => {
console.error("Error adding product:", error);
});
});
top of page
Terms and Conditions
Welcome to Big City Bagels. By accessing or using our website (www.bigcitybagels.net), you agree to comply with the following terms and conditions. If you do not accept these terms, please discontinue use of the site.
Use of Site
You may view and print materials from our site for personal, non-commercial use only. Unauthorized reproduction, distribution, or modification of any content is strictly prohibited.
​
Intellectual Property
All content on this site, including text, graphics, and logos, is the property of Big City Bagels and protected by applicable intellectual property laws.
​
No Refund Policy
All sales are final. Big City Bagels does not offer refunds or exchanges. If your order is incorrect or defective, contact us at CityBagelsaz@gmail.com within 72 hours of receipt for resolution.
​
Cookies
Our website uses cookies to enhance user experience. By using the site, you consent to our use of cookies as outlined in our Privacy Policy.
​
Third-Party Links
We are not responsible for content on third-party websites linked from our site. Access such links at your own risk.
​
Liability
Big City Bagels is not liable for any damages arising from the use or inability to use this site. We do not guarantee uninterrupted or error-free access to our website.
​
Modifications
We reserve the right to modify these terms at any time. Continued use of the site indicates your acceptance of updated terms.