jQuery(document).ready(function($) { // contacts page - locations sawp out // $('.mondo-contacts .locations .location a').click(function(e) { e.preventDefault(); var id=$(this).data('location'); $('.mondo-contacts .location-contacts-wrap').each(function() { $(this).hide(); if ($(this).attr('id') == id) { $(this).show(); } }); }); });