Handa Opera on Sydney Harbour - Guys & Dolls | Opera Australia (2024)

Join the waitlist

Complete the sign-up form to receive early pre-sale access to tickets for Guys & Dolls on Sydney Harbour.

By joining the waitlist, you agree to join our promotional program, which includes receiving our e-newsletter.

" + "

" + detail + "

" + ""; pc_confirmation.style.display = 'block'; var mp = document.querySelector('input[name="mp"]'); mp.value = '0'; } else { form.querySelector('._form-content').style.display = 'inline'; pc_confirmation.style.display = 'none'; } var hideButton = document.getElementById('hideButton'); // Add event listener to the button hideButton.addEventListener('click', function() { var submitButton = document.querySelector('#_form_216_submit'); submitButton.disabled = false; submitButton.classList.remove('processing'); var mp = document.querySelector('input[name="mp"]'); mp.value = '1'; window.location.href = window.location.href; }); const vgoAlias = typeof visitorGlobalObjectAlias === 'undefined' ? 'vgo' : visitorGlobalObjectAlias; var visitorObject = window[vgoAlias]; if (email && typeof visitorObject !== 'undefined') { visitorObject('setEmail', email); visitorObject('update'); } else if (typeof(trackcmp_url) != 'undefined' && trackcmp_url) { // Site tracking URL to use after inline form submission. _load_script(trackcmp_url); } if (typeof window._form_callback !== 'undefined') window._form_callback(id);};window._load_script = function(url, callback, isSubmit) { var head = document.querySelector('head'), script = document.createElement('script'), r = false; var submitButton = document.querySelector('#_form_216_submit'); script.charset = 'utf-8'; script.src = url; if (callback) { script.onload = script.onreadystatechange = function() { if (!r && (!this.readyState || this.readyState == 'complete')) { r = true; callback(); } }; } script.onerror = function() { if (isSubmit) { if (script.src.length > 10000) { _show_error("216", "Sorry, your submission failed. Please shorten your responses and try again."); } else { _show_error("216", "Sorry, your submission failed. Please try again."); } submitButton.disabled = false; submitButton.classList.remove('processing'); } } head.appendChild(script);};(function() { if (window.location.search.search("excludeform") !== -1) return false; var getCookie = function(name) { var match = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]+)')); return match ? match[2] : null; } var setCookie = function(name, value) { var now = new Date(); var time = now.getTime(); var expireTime = time + 1000 * 60 * 60 * 24 * 365; now.setTime(expireTime); document.cookie = name + '=' + value + '; expires=' + now + ';path=/; Secure; SameSite=Lax;'; } var addEvent = function(element, event, func) { if (element.addEventListener) { element.addEventListener(event, func); } else { var oldFunc = element['on' + event]; element['on' + event] = function() { oldFunc.apply(this, arguments); func.apply(this, arguments); }; } } var _removed = false; var form_to_submit = document.getElementById('_form_216_'); var allInputs = form_to_submit.querySelectorAll('input, select, textarea'), tooltips = [], submitted = false; var getUrlParam = function(name) { if (name.toLowerCase() !== 'email') { var params = new URLSearchParams(window.location.search); return params.get(name) || false; } // email is a special case because a plus is valid in the email address var qString = window.location.search; if (!qString) { return false; } var parameters = qString.substr(1).split('&'); for (var i = 0; i < parameters.length; i++) { var parameter = parameters[i].split('='); if (parameter[0].toLowerCase() === 'email') { return parameter[1] === undefined ? true : decodeURIComponent(parameter[1]); } } return false; }; var acctDateFormat = "%d/%m/%Y"; var getNormalizedDate = function(date, acctFormat) { var decodedDate = decodeURIComponent(date); if (acctFormat && acctFormat.match(/(%d|%e).*%m/gi) !== null) { return decodedDate.replace(/(\d{2}).*(\d{2}).*(\d{4})/g, '$3-$2-$1'); } else if (Date.parse(decodedDate)) { var dateObj = new Date(decodedDate); var year = dateObj.getFullYear(); var month = dateObj.getMonth() + 1; var day = dateObj.getDate(); return `${year}-${month < 10 ? `0${month}` : month}-${day < 10 ? `0${day}` : day}`; } return false; }; var getNormalizedTime = function(time) { var hour, minutes; var decodedTime = decodeURIComponent(time); var timeParts = Array.from(decodedTime.matchAll(/(\d{1,2}):(\d{1,2})\W*([AaPp][Mm])?/gm))[0]; if (timeParts[3]) { // 12 hour format var isPM = timeParts[3].toLowerCase() === 'pm'; if (isPM) { hour = parseInt(timeParts[1]) === 12 ? '12' : `${parseInt(timeParts[1]) + 12}`; } else { hour = parseInt(timeParts[1]) === 12 ? '0' : timeParts[1]; } } else { // 24 hour format hour = timeParts[1]; } var normalizedHour = parseInt(hour) < 10 ? `0${parseInt(hour)}` : hour; var minutes = timeParts[2]; return `${normalizedHour}:${minutes}`; }; for (var i = 0; i < allInputs.length; i++) { var regexStr = "field\\[(\\d+)\\]"; var results = new RegExp(regexStr).exec(allInputs[i].name); if (results != undefined) { allInputs[i].dataset.name = allInputs[i].name.match(/\[time\]$/) ? `${window.cfields[results[1]]}_time` : window.cfields[results[1]]; } else { allInputs[i].dataset.name = allInputs[i].name; } var fieldVal = getUrlParam(allInputs[i].dataset.name); if (fieldVal) { if (allInputs[i].dataset.autofill === "false") { continue; } if (allInputs[i].type == "radio" || allInputs[i].type == "checkbox") { if (allInputs[i].value == fieldVal) { allInputs[i].checked = true; } } else if (allInputs[i].type == "date") { allInputs[i].value = getNormalizedDate(fieldVal, acctDateFormat); } else if (allInputs[i].type == "time") { allInputs[i].value = getNormalizedTime(fieldVal); } else { allInputs[i].value = fieldVal; } } } var remove_tooltips = function() { for (var i = 0; i < tooltips.length; i++) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); } tooltips = []; }; var remove_tooltip = function(elem) { for (var i = 0; i < tooltips.length; i++) { if (tooltips[i].elem === elem) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); tooltips.splice(i, 1); return; } } }; var create_tooltip = function(elem, text) { var tooltip = document.createElement('div'), arrow = document.createElement('div'), inner = document.createElement('div'), new_tooltip = {}; if (elem.type != 'radio' && elem.type != 'checkbox') { tooltip.className = '_error'; arrow.className = '_error-arrow'; inner.className = '_error-inner'; inner.innerHTML = text; tooltip.appendChild(arrow); tooltip.appendChild(inner); elem.parentNode.appendChild(tooltip); } else { tooltip.className = '_error-inner _no_arrow'; tooltip.innerHTML = text; elem.parentNode.insertBefore(tooltip, elem); new_tooltip.no_arrow = true; } new_tooltip.tip = tooltip; new_tooltip.elem = elem; tooltips.push(new_tooltip); return new_tooltip; }; var resize_tooltip = function(tooltip) { var rect = tooltip.elem.getBoundingClientRect(); var doc = document.documentElement, scrollPosition = rect.top - ((window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0)); if (scrollPosition < 40) { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _below'; } else { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _above'; } }; var resize_tooltips = function() { if (_removed) return; for (var i = 0; i < tooltips.length; i++) { if (!tooltips[i].no_arrow) resize_tooltip(tooltips[i]); } }; var validate_field = function(elem, remove) { var tooltip = null, value = elem.value, no_error = true; remove ? remove_tooltip(elem) : false; if (elem.type != 'checkbox') elem.className = elem.className.replace(/ ?_has_error ?/g, ''); if (elem.getAttribute('required') !== null) { if (elem.type == 'radio' || (elem.type == 'checkbox' && /any/.test(elem.className))) { var elems = form_to_submit.elements[elem.name]; if (!(elems instanceof NodeList || elems instanceof HTMLCollection) || elems.length <= 1) { no_error = elem.checked; } else { no_error = false; for (var i = 0; i < elems.length; i++) { if (elems[i].checked) no_error = true; } } if (!no_error) { tooltip = create_tooltip(elem, "Please select an option."); } } else if (elem.type =='checkbox') { var elems = form_to_submit.elements[elem.name], found = false, err = []; no_error = true; for (var i = 0; i < elems.length; i++) { if (elems[i].getAttribute('required') === null) continue; if (!found && elems[i] !== elem) return true; found = true; elems[i].className = elems[i].className.replace(/ ?_has_error ?/g, ''); if (!elems[i].checked) { no_error = false; elems[i].className = elems[i].className + ' _has_error'; err.push("Checking %s is required".replace("%s", elems[i].value)); } } if (!no_error) { tooltip = create_tooltip(elem, err.join('
')); } } else if (elem.tagName == 'SELECT') { var selected = true; if (elem.multiple) { selected = false; for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected) { selected = true; break; } } } else { for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected && (!elem.options[i].value || (elem.options[i].value.match(/\n/g))) ) { selected = false; } } } if (!selected) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Please select an option."); } } else if (value === undefined || value === null || value === '') { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "This field is required."); } } if (no_error && (elem.id == 'field[]' || elem.id == 'ca[11][v]')) { if (elem.className.includes('phone-input-error')) { elem.className = elem.className + ' _has_error'; no_error = false; } } if (no_error && elem.name == 'email') { if (!value.match(/^[\+_a-z0-9-'&=]+(\.[\+_a-z0-9-']+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i)) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Enter a valid email address."); } } if (no_error && /date_field/.test(elem.className)) { if (!value.match(/^\d\d\d\d-\d\d-\d\d$/)) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Enter a valid date."); } } tooltip ? resize_tooltip(tooltip) : false; return no_error; }; var needs_validate = function(el) { if(el.getAttribute('required') !== null){ return true } if(el.name === 'email' && el.value !== ""){ return true } if((el.id == 'field[]' || el.id == 'ca[11][v]') && el.className.includes('phone-input-error')){ return true } return false }; var validate_form = function(e) { var err = form_to_submit.querySelector('._form_error'), no_error = true; if (!submitted) { submitted = true; for (var i = 0, len = allInputs.length; i < len; i++) { var input = allInputs[i]; if (needs_validate(input)) { if (input.type == 'tel') { addEvent(input, 'blur', function() { this.value = this.value.trim(); validate_field(this, true); }); } if (input.type == 'text' || input.type == 'number' || input.type == 'time') { addEvent(input, 'blur', function() { this.value = this.value.trim(); validate_field(this, true); }); addEvent(input, 'input', function() { validate_field(this, true); }); } else if (input.type == 'radio' || input.type == 'checkbox') { (function(el) { var radios = form_to_submit.elements[el.name]; for (var i = 0; i < radios.length; i++) { addEvent(radios[i], 'click', function() { validate_field(el, true); }); } })(input); } else if (input.tagName == 'SELECT') { addEvent(input, 'change', function() { validate_field(this, true); }); } else if (input.type == 'textarea'){ addEvent(input, 'input', function() { validate_field(this, true); }); } } } } remove_tooltips(); for (var i = 0, len = allInputs.length; i < len; i++) { var elem = allInputs[i]; if (needs_validate(elem)) { if (elem.tagName.toLowerCase() !== "select") { elem.value = elem.value.trim(); } validate_field(elem) ? true : no_error = false; } } if (!no_error && e) { e.preventDefault(); } resize_tooltips(); return no_error; }; addEvent(window, 'resize', resize_tooltips); addEvent(window, 'scroll', resize_tooltips); var hidePhoneInputError = function(inputId) { var errorMessage = document.getElementById("error-msg-" + inputId); var input = document.getElementById(inputId); errorMessage.classList.remove("phone-error"); errorMessage.classList.add("phone-error-hidden"); input.classList.remove("phone-input-error"); }; var initializePhoneInput = function(input, defaultCountry) { return window.intlTelInput(input, { utilsScript: "https://unpkg.com/intl-tel-input@17.0.18/build/js/utils.js", autoHideDialCode: false, separateDialCode: true, initialCountry: defaultCountry, preferredCountries: [] }); } var setPhoneInputEventListeners = function(inputId, input, iti) { input.addEventListener('blur', function() { var errorMessage = document.getElementById("error-msg-" + inputId); if (input.value.trim()) { if (iti.isValidNumber()) { iti.setNumber(iti.getNumber()); if (errorMessage.classList.contains("phone-error")){ hidePhoneInputError(inputId); } } else { showPhoneInputError(inputId) } } else { if (errorMessage.classList.contains("phone-error")){ hidePhoneInputError(inputId); } } }); input.addEventListener("countrychange", function() { iti.setNumber(''); }); input.addEventListener("keydown", function(e) { var charCode = (e.which) ? e.which : e.keyCode; if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode !== 8) { e.preventDefault(); } }); }; var showPhoneInputError = function(inputId) { var errorMessage = document.getElementById("error-msg-" + inputId); var input = document.getElementById(inputId); errorMessage.classList.add("phone-error"); errorMessage.classList.remove("phone-error-hidden"); input.classList.add("phone-input-error"); }; window['recaptcha_callback'] = function() { // Get all recaptchas in the DOM (there may be more than one form on the page). var recaptchas = document.getElementsByClassName("g-recaptcha"); for (var i in recaptchas) { // Set the recaptcha element ID, so the recaptcha can be applied to each element. var recaptcha_id = "recaptcha_" + i; recaptchas[i].id = recaptcha_id; var el = document.getElementById(recaptcha_id); if (el != null) { var sitekey = el.getAttribute("data-sitekey"); var stoken = el.getAttribute("data-stoken"); grecaptcha.render(recaptcha_id, {"sitekey":sitekey,"stoken":stoken}); } }}; _load_script( "https://www.google.com/recaptcha/api.js?onload=recaptcha_callback&render=explicit" ); var _form_serialize = function(form){if(!form||form.nodeName!=="FORM"){return }var i,j,q=[];for(i=0;i

{ if (key !== 'hideButton') { formData.append(key, value); } //formData.append(key, value); }); let request = { headers: { "Accept": "application/json" }, body: formData, method: "POST" }; let pageUrlParams = new URLSearchParams(window.location.search); if (pageUrlParams.has('t')) { request.headers.Authorization = 'Bearer ' + pageUrlParams.get('t'); } const response = await fetch('//opera.prospect2.com/proc.php?jsonp=true', request); return response.json(); } if (formSupportsPost) { submitForm().then((data) => { eval(data.js); }); } else { _load_script('//opera.prospect2.com/proc.php?' + serialized + '&jsonp=true', null, true); } } return false; }; addEvent(form_to_submit, 'submit', form_submit);})();
Handa Opera on Sydney Harbour - Guys & Dolls | Opera Australia (2024)

FAQs

Is there a dress code for the Handa Opera? ›

There's no compulsory dress code. Wear what you'll feel comfortable in and make sure you wear sensible shoes, as you will have to walk up and down stairs to reach your seats.

Can you watch an opera on Sydney Harbour? ›

Handa Opera on Sydney Harbour is an open-air and all-weather event. The venue, audience seating, and the stage are completely uncovered.

Who performed at the Sydney Opera House? ›

Over the years, there has been a long line of international stars who have performed on the Opera House stages, among them Sting, The Cure, Kraftwerk, The National, Björk, Patti Smith, Bob Dylan and Massive Attack.

Who officially opened the Sydney Opera House in 1975? ›

The Sydney Opera House was formally opened by Queen Elizabeth II, on 20 October 1973.

Can I wear jeans to an opera? ›

Check that the stitching is clean and there are no frays or pilling on sweaters in particular. Women who want to wear pants should look for professional pieces, like pleated slacks or trendy ankle pants. Avoid anything you would wear running around on the weekend, like denim, jeans, denim jackets, and sneakers.

What do girls wear to the opera? ›

co*cktail dresses or midi skirts will instantly give your outfit a sophisticated appearance, but if you prefer more coverage, a pantsuit or embellished jumpsuit will also work for an opera outing.

What happens if it rains at opera on the Harbor? ›

The performance will only be cancelled if the weather poses a threat to the safety of performers or the audience. Cancellation will occur in the event of heavy rain and/or strong winds as Opera Australia acknowledges that the comfort and safety of the audience and its performers are paramount.

Can you just walk around the Sydney Opera House? ›

You can walk the entire perimeter of this immense structure and go up the stairs at the front which are a very popular photo location. Visit early morning or at dusk to get the best light and most evocative photographs.

How much does it cost to see the Sydney Opera House? ›

Daily
TicketPrice
Adult$45
Child>$25
Concession*$35
Family^$115

Why is Sydney Opera House so famous? ›

World Heritage

According to UNESCO, the Sydney Opera House is a great architectural work of the 20th century that brings together multiple strands of creativity and innovation in both architectural form and structural design. “Its significance is based on its unparalleled design and construction,” UNESCO stated.

What do tourists do at the Sydney Opera House? ›

Tours. Join a guided tour to come behind the scenes and discover the history, architecture and extraordinary story of Sydney's Opera House.

What are five interesting facts about the Sydney Opera House? ›

5 Things You Never Knew About the Sydney Opera House
  • The first performance was given by the activist Paul Robeson. ...
  • The venue was officially opened by Queen Elizabeth II. ...
  • There is a net installed above the orchestra pit (after a live chicken once fell in) ...
  • There is a fine-dining restaurant, Bennelong, inside the opera house.

Who was the first person to sing at the Sydney Opera House? ›

Paul Robeson was the first person to perform at Sydney Opera House. In 1960, he climbed the scaffolding and sang Ol' Man River to the construction workers as they ate lunch.

Did Queen Elizabeth open the Sydney Opera House? ›

The Queen presided over the Opening of the Sydney Opera House in Sydney on this day in 1973, 50 years ago, in the midst of a week-long Tour of Australia, their first visit since the Captain Cook Bicentenary Tour in 1970.

How many shells are on the Sydney Opera House? ›

There are 14 shells on the Sydney Opera House. They were inspired by the shape of sea shells and the maritime history of the city of Sydney and the Sydney Harbour. However, they proved difficult to build and it is said that Jorn Utzen solved the puzzle of how to construct their shape while peeling a mandarin.

Is there a dress code for La opera? ›

Whatever you feel comfortable in, as long as it meets the standards of public attire. Most people dress up for evening performances—especially on the weekends—and people tend to dress nicer on opening nights (particularly the season opening).

Can you wear jeans to the Boston Opera House? ›

There is no specific dress code. Most people enjoy dressing up to go to the theatre, and some events, such as opening nights, will draw a dressier crowd. For theatrical performances, you will see people in everything from casual to formal wear.

What is the dress code for the opera in Naples Italy? ›

What to Wear. There is not a strictly enforced dress code, but most men wear a suit or coat & tie (and women wear the equivalent). Black tie is certainly acceptable, and other "nice" clothes (say, slacks & a sweater) are probably OK.

How to dress for the opera in NYC? ›

Dress up as much or as little as you want. For some, the opera is an opportunity to go all out; no matter what you wear, there will be someone more opulent than you. Some still wear gowns and gloves.

References

Top Articles
Major Gift Officer in Pasadena, CA for Carnegie Institution for Science
Blooming Onion with Sauce
Srtc Tifton Ga
Craigslist Vans
Coverage of the introduction of the Water (Special Measures) Bill
The Daily News Leader from Staunton, Virginia
Tj Nails Victoria Tx
Apex Rank Leaderboard
Encore Atlanta Cheer Competition
GAY (and stinky) DOGS [scat] by Entomb
Buckaroo Blog
South Ms Farm Trader
Blue Ridge Now Mugshots Hendersonville Nc
Methodist Laborworkx
Explore Top Free Tattoo Fonts: Style Your Ink Perfectly! 🖌️
Flights To Frankfort Kentucky
Diesel Mechanic Jobs Near Me Hiring
Are They Not Beautiful Wowhead
Truth Of God Schedule 2023
Alexander Funeral Home Gallatin Obituaries
Gem City Surgeons Miami Valley South
Joan M. Wallace - Baker Swan Funeral Home
Pearson Correlation Coefficient
Providence Medical Group-West Hills Primary Care
Imouto Wa Gal Kawaii - Episode 2
Nesb Routing Number
Amerisourcebergen Thoughtspot 2023
Kabob-House-Spokane Photos
Narragansett Bay Cruising - A Complete Guide: Explore Newport, Providence & More
Isablove
Craigslist Cars And Trucks Mcallen
Wake County Court Records | NorthCarolinaCourtRecords.us
Fox And Friends Mega Morning Deals July 2022
Scioto Post News
Agematch Com Member Login
The Best Restaurants in Dublin - The MICHELIN Guide
Electronic Music Duo Daft Punk Announces Split After Nearly 3 Decades
Dispensaries Open On Christmas 2022
Guy Ritchie's The Covenant Showtimes Near Grand Theatres - Bismarck
LoL Lore: Die Story von Caitlyn, dem Sheriff von Piltover
Blackwolf Run Pro Shop
Patricia And Aaron Toro
Sky Dental Cartersville
Lesly Center Tiraj Rapid
Wisconsin Volleyball titt*es
2000 Ford F-150 for sale - Scottsdale, AZ - craigslist
Bedbathandbeyond Flemington Nj
Deshuesadero El Pulpo
Deviantart Rwby
The Ultimate Guide To 5 Movierulz. Com: Exploring The World Of Online Movies
Supervisor-Managing Your Teams Risk – 3455 questions with correct answers
Latest Posts
Article information

Author: Barbera Armstrong

Last Updated:

Views: 6060

Rating: 4.9 / 5 (79 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Barbera Armstrong

Birthday: 1992-09-12

Address: Suite 993 99852 Daugherty Causeway, Ritchiehaven, VT 49630

Phone: +5026838435397

Job: National Engineer

Hobby: Listening to music, Board games, Photography, Ice skating, LARPing, Kite flying, Rugby

Introduction: My name is Barbera Armstrong, I am a lovely, delightful, cooperative, funny, enchanting, vivacious, tender person who loves writing and wants to share my knowledge and understanding with you.