www.burleighsurf.com.au
Open in
urlscan Pro
172.67.138.224
Public Scan
Submitted URL: http://burleighsurf.com.au/
Effective URL: https://www.burleighsurf.com.au/
Submission: On December 25 via manual from IN — Scanned from AU
Effective URL: https://www.burleighsurf.com.au/
Submission: On December 25 via manual from IN — Scanned from AU
Form analysis
3 forms found in the DOMGET https://www.burleighsurf.com.au/
<form role="search" method="get" class="et-search-form" action="https://www.burleighsurf.com.au/">
<input type="search" class="et-search-field" placeholder="Search …" value="" name="s" title="Search for:">
</form>
POST https://burleighsurf.etourism.net.au/
<form method="post" id="custom-booking-form" action="https://burleighsurf.etourism.net.au/" target="_blank">
<div class="book-title">
<h3>Book<br> Online</h3>
</div>
<div class="check_in_date">
<div class="wrapper">
<h4>ARRIVAL</h4>
<input type="text" class="datepicker" value="25">
<input type="text" name="check_in_date" id="check_in_date" value="2024-12-25" class="hasDatepicker">
<span class="month sub">Dec</span>
</div>
</div>
<div class="check_out_date">
<div class="wrapper">
<h4>DEPARTURE</h4>
<input type="text" class="datepicker" value="26">
<input type="text" name="check_out_date" id="check_out_date" value="2024-12-26" class="hasDatepicker">
<span class="month sub">Dec</span>
</div>
</div>
<!-- <div class="num_of_adults">
<div class="wrapper">
<h4>Guests</h4>
<select id="guests_dropdown" name="num_of_adults">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
</select>
<span class="sub">PERSON</span>
</div>
</div> -->
<div class="num_of_adults" id="num_of_guest">
<div class="wrapper">
<h4>Guests</h4>
<input type="text" name="num_of_adults" id="guest" value="1">
<ul>
<li data-value="1" class="active">1</li>
<li data-value="2">2</li>
<li data-value="3">3</li>
<li data-value="4">4</li>
<li data-value="5">5</li>
<li data-value="6">6</li>
<li data-value="7">7</li>
<li data-value="8">8</li>
<li data-value="9">9</li>
<li data-value="10">10</li>
</ul>
<span class="sub">Person</span>
</div>
</div>
<div class="book-now">
<button type="submit" id="submit_check_availability">CHECK AVAILABILITY</button>
</div>
<style>
#num_of_guest ul {
display: none;
}
#num_of_guest .wrapper {
display: flex;
flex-direction: column;
}
#num_of_guest .wrapper ul {
list-style: none;
overflow: auto;
height: 106px;
background: #fff;
position: absolute;
width: 100%;
top: 54px;
padding: 0;
z-index: 100;
}
#num_of_guest .wrapper ul li {
text-align: left;
font-size: 16px;
display: block;
padding: 0 0 0 9px;
}
#num_of_guest .wrapper ul li:hover {
background: #1861a2;
color: #fff;
cursor: pointer;
}
#num_of_guest .wrapper ul li.active {
background: #1861a2;
color: #fff;
}
</style>
<script>
(function($) {
$(document).ready(function() {
var dateFormat = "yy-mm-dd",
from = $("#check_in_date").datepicker({
changeYear: true,
changeMonth: true,
numberOfMonths: 1,
dateFormat: dateFormat,
minDate: $.datepicker.parseDate('yy-mm-dd', $("#check_in_date").val())
}).on("change", function() {
var to_date = getDate(this);
to_date.setDate(to_date.getDate() + 1);
to.datepicker("option", "minDate", to_date);
var date = $(this).datepicker('getDate');
$(".check_in_date .datepicker").val($.datepicker.formatDate('d', date));
$(".check_in_date .month").text($.datepicker.formatDate('M', date));
$("#check_out_date").val($.datepicker.formatDate('yy-mm-dd', to_date)).trigger('change');
}),
to = $("#check_out_date").datepicker({
changeMonth: true,
numberOfMonths: 1,
changeMonth: true,
dateFormat: dateFormat
}).on("change", function() {
var date = $.datepicker.parseDate(dateFormat, this.value);
$("#check_out_date").val($.datepicker.formatDate('yy-mm-dd', date));
var date = $(this).datepicker('getDate');
$(".check_out_date .datepicker").val($.datepicker.formatDate('d', date));
$(".check_out_date .month").text($.datepicker.formatDate('M', date));
});
var to_date = getDate(from.get(0));
to_date.setDate(to_date.getDate() + 1);
to.datepicker("option", "minDate", to_date);
$("#duration").on("change", function() {
calcNights();
});
$(".check_in_date .datepicker").on("click", function() {
$("#check_in_date").datepicker("show");
});
$(".check_out_date .datepicker").on("click", function() {
$("#check_out_date").datepicker("show");
});
function calcNights() {
var start_date = getDate(from.get(0));
start_date.setDate(start_date.getDate() + parseInt($("#duration").val()));
$("#check_out_date").val($.datepicker.formatDate('yy-mm-dd', start_date));
}
function getDate(element) {
var date;
try {
date = $.datepicker.parseDate(dateFormat, element.value);
} catch (error) {
date = null;
}
return date;
}
$("#guests_dropdown, #duration, #children_dropdown, #rooms_dropdown").select2({
minimumResultsForSearch: -1
});
});
// $('.check_in_date .dashicons, .check_out_date .dashicons').click(function() {
// $(this).siblings('input[type=text]').focus();
// })
// $("#custom-booking-form").submit(function() {
// if (!$("#check_in_date").val() || !$("#check_out_date").val()) {
// return false;
// }
// });
// $("#submit_check_availability").click(function() {
// if (!$("#check_in_date").val() || !$("#check_out_date").val()) {
// return false;
// }
// });
// $('.booking-show').hover(function() {
// $('.custom-booking-panel').css('opacity', '1').css('visibility', 'visible');
// }, function() {
// if (!$('.ui-datepicker').is(':visible')) {
// $('.custom-booking-panel').css('opacity', '0').css('visibility', 'hidden');
// }
// })
})(jQuery);
</script>
<script>
$(document).ready(function() {
$("#guest").focus(function() {
$("#num_of_guest ul").show();
})
$("#num_of_guest ul li").click(function(event) {
$("#guest").val(event.target.dataset.value);
$("#num_of_guest ul").hide();
// add active to li
addActive(event.target.dataset.value);
})
function addActive(num) {
const li = document.querySelectorAll("#num_of_guest ul li")
li.forEach(function(element) {
// console.log(element.getAttribute("data-value"));
if (element.getAttribute("data-value") == num) {
element.classList.add('active');
} else {
element.classList.remove('active');
}
});
}
document.addEventListener("mouseup", (e) => {
var popup = $("#num_of_guest ul");
if (!$('#guest').is(e.target) && !popup.is(e.target) && popup.has(e.target).length == 0) {
$("#num_of_guest ul").hide();
}
});
})
</script>
</form>
POST
<form method="post">
<div class="et_pb_newsletter_result et_pb_newsletter_error"></div>
<div class="et_pb_newsletter_result et_pb_newsletter_success">
<h2>Success!</h2>
</div>
<div class="et_pb_newsletter_fields">
<p class="et_pb_newsletter_field et_pb_contact_field_half et_pb_contact_field_last_tablet et_pb_contact_field_last_phone">
<label class="et_pb_contact_form_label" for="et_pb_signup_email" style="display: none;">Email</label>
<input id="et_pb_signup_email" class="input" type="text" placeholder="Email" name="et_pb_signup_email">
</p>
<p class="et_pb_newsletter_button_wrap">
<a class="et_pb_newsletter_button et_pb_button" href="#" data-icon="">
<span class="et_subscribe_loader"></span>
<span class="et_pb_newsletter_button_text">Subscribe</span>
</a>
</p>
</div>
<input type="hidden" value="mailchimp" name="et_pb_signup_provider">
<input type="hidden" value="630d4c91c6" name="et_pb_signup_list_id">
<input type="hidden" value="RoyalPalmResort" name="et_pb_signup_account_name">
<input type="hidden" value="true" name="et_pb_signup_ip_address"><input type="hidden" value="b4180098ff73b1de8c6bb28f660ddd6b" name="et_pb_signup_checksum">
</form>
Text Content
Nearby Construction Notice > M * Home * Apartments * Facilities * Location * Attractions * Tours * Reviews * Blog * Contact Us * FAQ * Book Now Select Page * Home * Apartments * Facilities * Location * Attractions * Tours * Reviews * Blog * Contact Us * FAQ * Book Now BREATH-TAKING PANORAMIC VIEWS OF THE OCEAN LOCATED JUST STEPS FROM THE SAND - TREAT YOURSELF TO AN EARLY MORNING SURF! PreviousNext 12 BOOK ONLINE ARRIVAL Dec DEPARTURE Dec GUESTS * 1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 Person CHECK AVAILABILITY * Follow * Follow Phone Email BURLEIGH SURF Welcome to Burleigh Surf – Esplanade Burleigh Heads accommodation with spectacular ocean views, directly opposite Burleigh Beach Gold Coast. Our stunning high-rise complex overlooks the beach with breath-taking panoramic views of the ocean, providing an absolute beachfront getaway in a range of fully self-contained Burleigh apartments for couples, families and individuals seeking an unforgettable escape in the heart of Queensland’s Gold Coast. Simply kick back, relax and explore here at Burleigh Surf. Our resort boasts two swimming pools, a heated spa, sauna, tennis court and more, with a central location that places the region’s best things to do, from boutique shopping and dining to exciting attractions and theme parks, just a short drive away. However you’re planning to soak up and experience the Gold Coast, book a beachfront break to remember with Burleigh Surf Burleigh Beach. BOOK YOUR STAY EXPLORE OUR APARTMENTS Book your ideal stay in Burleigh Gold Coast – we offer quality beachfront 1, 2 and 3 bedroom Burleigh Heads apartments, along with our stunning 3-bedroom sub-penthouse and 6-bedroom penthouse to suit all preferences. THE NEIGHBOURHOOD Sprawling with 70km of sun-kissed beaches, lush natural attractions, sophisticated shopping and dining destinations, family attractions and more, the Gold Coast offers plenty to see and do for a holiday to remember. LOCAL ATTRACTIONS From theme parks to wildlife sanctuaries, adrenaline adventures and whale watching tours – the Gold Coast has something for everyone. Our beachfront apartments Burleigh Heads are the ideal base for experiencing it all OUR ROOMS 6 BEDROOM PENTHOUSE APARTMENT OUR APARTMENTS 3 BEDROOM SUB-PENTHOUSE APARTMENTS OUR APARTMENTS 3 BEDROOM SUPERIOR APARTMENTS OUR APARTMENTS 2 BEDROOM EXECUTIVE APARTMENTS OUR APARTMENTS 2 BEDROOM SUPERIOR APARTMENTS OUR APARTMENTS 2 BEDROOM STANDARD APARTMENTS OUR APARTMENTS 1 BEDROOM SUPERIOR APARTMENTS OUR APARTMENTS 1 BEDROOM STANDARD APARTMENTS OUR APARTMENTS PreviousNext My favourite Gold Coast home! Haven’t been for a few years now but lovely memories of time spent there with my late husband. Handy to everything, great pools, great views, just GREAT! Norma Meikle Via Facebook This place is amazing, i stayed there a few years ago and the place and the staff were wonderful. Dawn Hook Via Facebook Adore a Burleigh getaway!! My favourite beach, the best restaurants.. The perfect holiday!! Kasey Zendler Via Facebook Beautiful area. Nicest place on the Gold Coast! Lyn Rossow Via Facebook Previous Slide Next Slide Situated in an ideal position in the heart of the Gold Coast, you'll find that just a short drive away you can reach many of the best local attractions. Broadbeach and Surfers Paradise to the north, or Coolangatta and the famous surf spot Snapper Rocks are within a 20-minute drive of our apartments. If you are looking for the best spots for Gold Coast surfing, however, Burleigh itself is one of the best. The headland wrapping around Burleigh National Park around to Tallebudgera Creek offers a spectacular surf break. If a more laid back approach is more your style, you'll love perusing the boutique stores on James Street, enjoying a little retail therapy at Stockland West Burleigh, enjoying a leisurely stroll along the coastline, or dining with sparkling ocean views along the coastline. The Village Markets and Beachside Markets are favourites for visitors and locals alike. Jellurgal Aboriginal Cultural Centre is just around the corner, and another popular destination for guests to explore. PLEASE EXPLORE ALL OF OUR COAST BREAKZ PROPERTIES: Gather your Family & Friends and book into our stu Happy New Year from our 4-Bedroom with Private Poo Princess Palm - Palm Beach QLD Direct Beach Access 2-Bedroom Premier Plus at Princess Palms Call us a Royal Palm Resort - Palm Beach QLD BOOK NOW Our 6-Bedroom Penthouse Apartment at Burleigh Surf Enjoy our private Rooftop Pool and Spa Penthouse a Best time of the year to take a stroll down to Bur Spa weather at Royal Palm #palmbeach #goldcoast Too cold for Winter? Not in our indoor pool, spa & #isleofpalmselanora #goldcoast #lakefrontaccommoda Are you dreaming of a coast break this Christmas b FOLLOW US: * Follow * Follow NEWSLETTER SIGN UP SUCCESS! Email Subscribe 238 The Esplanade Burleigh Heads Gold Coast 4220 Australia Email: reservations@burleighsurf.com.au ▪ Phone: +61 7 5535 8866 ▪ Fax: +61 7 5535 8523 * Site Map * Privacy Policy * Terms & Conditions Copyright © 2020 Burleigh Surf. Hotel Website Design & Digital Marketing by eTourism BOOK DIRECT ONLINE BOOK YOUR STAY Make the most of a well-deserved, long stay with us at Burleigh Beach! Enjoy our stunning features such as: + Two swimming pools + Indoor heated spa + Steam room + Full-size tennis court BOOK NOW PrevNext Dec 2024 SuMoTuWeThFrSa12345678910111213141516171819202122232425262728293031