Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active May 23, 2024 10:08
Show Gist options
  • Save propertyhive/65406e6d0e33c1be5fa20042bb7b2585 to your computer and use it in GitHub Desktop.
Save propertyhive/65406e6d0e33c1be5fa20042bb7b2585 to your computer and use it in GitHub Desktop.
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() { default_lettings_button() }, 100 ); // delay execution of defaulting
});
function default_lettings_button()
{
var checked_department = jQuery('input[name="department"]:checked').val();
if ( checked_department == 'residential-lettings' )
{
toggleActive(document.querySelector('.control-department label[for="department_residential-lettings"]'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment