GOLDEN TICKET CINEMAS > MERIDIAN 9 > THE FORGE > 30/8/2024 > 9:30 PM (1) > SELECT SEATS - Movies, Showtimes, Tickets and Concessions (2024)

'; } if (a.dataset.multi != "true") { classInfo += 'SELECT A TICKET TYPE
FOR THE SEAT YOU CHOSE
'; } classInfo += '

'; if (availMemberTickets > appliedMemberTickets && (maxMemberTickets == 0 || appliedMemberTickets < maxMemberTickets)) { classInfo += '

MEMBERSHIP TICKETS

'; if (availMemberTickets > appliedMemberTickets) classInfo += '

YOU HAVE ' + (availMemberTickets - appliedMemberTickets) + ' FREE MEMBER TICKET(S) AVAILABLE

'; let availTickets = ticketPriceGroups[a.dataset.pricegroup]; availTickets.forEach(function(ticket) { if (ticketClasses[ticket]) { let tmpTicket = ticketClasses[ticket]; let linkedPricing = 0; if (tmpTicket.linkedItems.length > 0) { for (let a = 0; a <= (tmpTicket.linkedItems.length - 1); a++) { linkedPricing += tmpTicket.linkedItems[a].pricex100 * tmpTicket.linkedItems[a].amount; } } let taxVal = (incTax == 1) ? parseInt(tmpTicket.tax1x100, 10) + parseInt(tmpTicket.tax2x100, 10) : 0; let serFee = (incFee == 1) ? parseInt(175, 10) : 0; let feeText = (incFee == 1) ? '($' + ((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal) / 100).toFixed(2)+' Ticket + ' + (serFee / 100).toFixed(2) + ' Conv. Fee)' : ''; let priceText = ((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + serFee) > 0) ? '$'+((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal + serFee) / 100).toFixed(2) : ''; if (tmpTicket.bonus == true) classInfo += '

'+tmpTicket.appName+''+priceText+'' + feeText +'

'; } }); } if (memberOnlyTicket != null && Object.keys(memberOnlyTicket).length > 0) { classInfo += '

MEMBER EXCLUSIVE TICKETS

'; Object.keys(memberOnlyTicket).forEach(key => { let tmpTicket = memberOnlyTicket[key]; let linkedPricing = 0; if (tmpTicket.linkedItems.length > 0) { for (let a = 0; a <= (tmpTicket.linkedItems.length - 1); a++) { linkedPricing += tmpTicket.linkedItems[a].pricex100 * tmpTicket.linkedItems[a].amount; } } let taxVal = (incTax == 1) ? parseInt(tmpTicket.tax1x100, 10) + parseInt(tmpTicket.tax2x100, 10) : 0; let serFee = (incFee == 1) ? parseInt(175, 10) : 0; let feeText = (incFee == 1) ? '($' + ((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal) / 100).toFixed(2)+' Ticket + ' + (serFee / 100).toFixed(2) + ' Conv. Fee)' : ''; let tmpPrice = (parseInt(tmpTicket.pricex100, 10) > 0) ? ' ($'+((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal + serFee) / 100).toFixed(2)+')' : ''; classInfo += '

'+tmpTicket.appName+'$'+((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal + serFee) / 100).toFixed(2)+'' + feeText +'

'; }); } if (typeof memberOnlyTicket !== 'undefined' && Object.keys(memberOnlyTicket).length == 0) { classInfo += '

STANDARD TICKETS

'; let availTickets = ticketPriceGroups[a.dataset.pricegroup]; availTickets.forEach(function(ticket) { if (ticketClasses[ticket]) { tmpTicket = ticketClasses[ticket]; let linkedPricing = 0; if (tmpTicket.linkedItems.length > 0) { for (let a = 0; a <= (tmpTicket.linkedItems.length - 1); a++) { linkedPricing += tmpTicket.linkedItems[a].pricex100 * tmpTicket.linkedItems[a].amount; } } let taxVal = (incTax == 1) ? parseInt(tmpTicket.tax1x100, 10) + parseInt(tmpTicket.tax2x100, 10) : 0; let serFee = (incFee == 1) ? parseInt(175, 10) : 0; let feeText = (incFee == 1) ? '($' + ((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal) / 100).toFixed(2)+' Ticket + ' + (serFee / 100).toFixed(2) + ' Conv. Fee)' : ''; if (tmpTicket.pricex100 > 0 && tmpTicket.bonus == false) classInfo += '

'+tmpTicket.appName+'$'+((parseInt(tmpTicket.pricex100, 10) + parseInt(linkedPricing, 10) + taxVal + serFee) / 100).toFixed(2)+'' + feeText +'

'; } }); } classInfo += '

'; for (let i = 0; i <= (SeatTicketArray.length - 1); i++) { const tmp = SeatTicketArray[i].split(","); let price = ((parseInt(tmp[3], 10) + parseInt(tmp[4], 10) + parseInt(tmp[5], 10) + parseFloat(tmp[13])) / 100); price = price.toFixed(2); cartInfo += 'Seat '+tmp[0]+' - '+tmp[2]+' ($'+price+')
'; } cartMessage= 'CONTINUE WITH SEAT SELECTION THEN'; //document.getElementById('cartMessage').innerHTML = cartMessage; document.getElementById('cartInfo').innerHTML = cartInfo; document.getElementById('nextBtn').innerHTML = 'ADD TO CART'; document.getElementById('nextBtn').style.backgroundColor = 'var(--mmBlue)'; document.getElementById('nextBtn').style.color = 'white'; if (document.getElementById('nextBtn2')) document.getElementById('nextBtn2').style.display = 'block'; } if (SeatTicketArray.length <= 0) { document.getElementById('cartInfo').innerHTML = ''; document.getElementById('nextBtn').innerHTML = 'SELECT A SEAT TO GET STARTED'; document.getElementById('nextBtn').style.backgroundColor = 'var(--main)'; document.getElementById('nextBtn').style.color = 'var(--font)'; if (document.getElementById('nextBtn2')) document.getElementById('nextBtn2').style.display = 'none'; } } function verifySeats(a) { let addToCartAction = 'Cart'; if (!a || a != 'checkout') addToCartAction = 'Cart'; if (seats.length <= 0) fancyAlert('Please select at least 1 seat to continue'); if (seats.length > 0) { fancyAlert('Please wait a moment while we confirm your seat selection', ''); const payLoad = JSON.stringify({ perf: 25676, seats: seats, linkedItems: linkedItems, seatNames: SeatTicketArray, site: 388220, film: 297, movie: 823 }); fetch('include/doVerifySeats.php', { method: 'POST', mode: 'cors', cache: 'no-cache', credentials: 'same-origin', headers:{ 'Content-Type':'application/json' }, redirect: 'follow', referrerPolicy: 'no-referrer', body: payLoad }) .then(function(response){ return response.json() }) .then(function(data){ if (data.status == 'success') { location.href = addToCartAction; } if (data.status != 'success') { fancyAlert(data.errorMsg); if (data.rtsResponse) { let rtsInfo = data.rtsResponse; let violators = rtsInfo.violators; violators.forEach(function(badseat) { document.getElementById(badseat).style.color = 'pink'; }); } } }) .catch((error) => { console.error('Error:', error); fancyAlert('Something went wrong!'); }); } } function getSeatData() { payLoad = JSON.stringify({ perf: 25676, site: 388220 }); fetch('include/getSeatData.php', { method: 'POST', mode: 'cors', cache: 'no-cache', credentials: 'same-origin', headers:{ 'Content-Type':'application/json' }, redirect: 'follow', referrerPolicy: 'no-referrer', body: payLoad }) .then(function(response){ return response.json() }) .then(function(data){ console.log(data); if (data.status == 'success') { doRenderSeatMap(data); } }) .catch((error) => { console.error('Error:', error); fancyAlert('Unable to retreive seat charts'); }); } $(function() { let payLoad; getSeatData(); });

GOLDEN TICKET CINEMAS > MERIDIAN 9 > THE FORGE > 30/8/2024 > 9:30 PM (1) > SELECT SEATS - Movies, Showtimes, Tickets and Concessions (2024)

References

Top Articles
World of Warcraft News and Development Updates
Classic Rogue DPS Guide
Chs.mywork
Dunhams Treestands
Global Foods Trading GmbH, Biebesheim a. Rhein
Genesis Parsippany
Missed Connections Inland Empire
La connexion à Mon Compte
Bucks County Job Requisitions
Poe Pohx Profile
Naturalization Ceremonies Can I Pick Up Citizenship Certificate Before Ceremony
Nm Remote Access
Atrium Shift Select
Fallout 4 Pipboy Upgrades
Locate Td Bank Near Me
Palace Pizza Joplin
How Many Slices Are In A Large Pizza? | Number Of Pizzas To Order For Your Next Party
4156303136
Bowlero (BOWL) Earnings Date and Reports 2024
Dallas Cowboys On Sirius Xm Radio
Itziar Atienza Bikini
Where to Find Scavs in Customs in Escape from Tarkov
ZURU - XSHOT - Insanity Mad Mega Barrel - Speelgoedblaster - Met 72 pijltjes | bol
Rs3 Eldritch Crossbow
Bennington County Criminal Court Calendar
Toothio Login
Utexas Iot Wifi
Foodsmart Jonesboro Ar Weekly Ad
Craigslist Hunting Land For Lease In Ga
Select Truck Greensboro
January 8 Jesus Calling
Maisons près d'une ville - Štanga - Location de vacances à proximité d'une ville - Štanga | Résultats 201
Free Tiktok Likes Compara Smm
J&R Cycle Villa Park
Otis Offender Michigan
Chicago Pd Rotten Tomatoes
Kltv Com Big Red Box
404-459-1280
Tenant Vs. Occupant: Is There Really A Difference Between Them?
Flashscore.com Live Football Scores Livescore
Sinai Sdn 2023
Merkantilismus – Staatslexikon
FREE - Divitarot.com - Tarot Denis Lapierre - Free divinatory tarot - Your divinatory tarot - Your future according to the cards! - Official website of Denis Lapierre - LIVE TAROT - Online Free Tarot cards reading - TAROT - Your free online latin tarot re
Wpne Tv Schedule
Wisconsin Volleyball titt*es
Premiumbukkake Tour
Minecraft: Piglin Trade List (What Can You Get & How)
The 13 best home gym equipment and machines of 2023
Zadruga Elita 7 Live - Zadruga Elita 8 Uživo HD Emitirani Sat Putem Interneta
303-615-0055
Coldestuknow
Intuitive Astrology with Molly McCord
Latest Posts
Article information

Author: Nicola Considine CPA

Last Updated:

Views: 5777

Rating: 4.9 / 5 (69 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Nicola Considine CPA

Birthday: 1993-02-26

Address: 3809 Clinton Inlet, East Aleisha, UT 46318-2392

Phone: +2681424145499

Job: Government Technician

Hobby: Calligraphy, Lego building, Worldbuilding, Shooting, Bird watching, Shopping, Cooking

Introduction: My name is Nicola Considine CPA, I am a determined, witty, powerful, brainy, open, smiling, proud person who loves writing and wants to share my knowledge and understanding with you.