<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'>
</script>
<script type='text/javascript'>
$(document).ready(function () {
$('.fieldreplace a').click(function () {
$('#fieldmatch, .fieldgame').hide();
var region = $(this).data('region');
$('#' + region).show();
});
});
</script>
I am attempting to create functionality where clicking on a link will update content within multiple cells simultaneously, rather than just one cell at a time.
Any assistance would be greatly appreciated!