forked from joomla/Component-Builder
12 lines
384 B
JavaScript
12 lines
384 B
JavaScript
jQuery(document).ready(function() {
|
|
jQuery('#tour_favorite').click(function() {
|
|
if (jQuery(this).attr('rel') == 'no') {
|
|
jQuery('#tour_favorite').removeClass('favorite_inactive')
|
|
.addClass('favorite_active').attr('rel', 'yes');
|
|
} else {
|
|
jQuery('#tour_favorite').removeClass('favorite_active')
|
|
.addClass('favorite_inactive').attr('rel', 'no');
|
|
};
|
|
});
|
|
});
|