1.0.23 • Published 2 years ago

pitched-widget-standard v1.0.23

Weekly downloads
1
License
ISC
Repository
-
Last release
2 years ago

Pitched Widget Integration

Include files

Please add the stylesheet within the HEAD tag, and the JavaScript file before the closing BODY tag.

// Include Styles within the HEAD tag.
<link  rel="stylesheet"  href="https://cdn.jsdelivr.net/npm/pitched-widget-standard@latest/dist/pitched-widget-standard.min.css"/>

// Include Javascript before the closing BODY tag.
<script  src="https://cdn.jsdelivr.net/npm/pitched-widget-standard@latest/dist/pitched-widget-standard.min.js"></script>

Initialize Widget

Include this JavaScript code after you have included the JavaScript file above. Note that if your bookingURL contains api.pitchedbooking.com, you must include the 'key' argument.

// Create the widget
var widget =  new  PitchedWidget({

	// REQUIRED: Your booking URL
	'bookingURL': '...',
	
	// REQUIRED if your booking url contains api.pitchedbooking.com
	'key': '...',

	// REQUIRED: Add the widget to the element with this ID
	'appendTo': '#myWidgetContainer',

	// REQUIRED: Colour theme, hex or rgba colour
	'color': '#275881',

	// OPTIONAL: Change the label for adults
	'adultsLabel': 'Adults (18+)', 
	
	// OPTIONAL: Change the label for teenagers
	'teenagersLabel': 'Teenagers (13-17)', 
	
	// OPTIONAL: Change the label for children
	'childrenLabel': 'Children (4-13)', 
	
	// OPTIONAL: Change the label for infants
	'infantsLabel': 'Infants (0-3)',
	
	// OPTIONAL: Change the label for pets
	'petsLabel': 'Pets',
	
	// OPTIONAL: Change the search button label
	'buttonLabel': 'SEARCH', // Optional

	// OPTIONAL: Collapse the widget
	'collapsed': false, // true or false
	
	// OPTIONAL: Set a min date for the datepicker
	'minDate': new  Date(2020, 09, 30),
	
	// OPTIONAL: Can only book X days from min dates
	'daysOffset': 7,
	
	// OPTIONAL: Disables specific days of the week (example below disables mondays and tuesdays)
	'disableDaysOfWeek': [0, 1],
	
	// OPTIONAL: Open the results in a new tab (default is true)
	'openResultsInNewTab': true,
});
1.0.22

2 years ago

1.0.23

2 years ago

1.0.21

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.20

2 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago