Hi Team,
I am using the following JS and CSS as column links on my home page. But I want two of the links of open new windows because they are external links. How can I alter the code to do that…
jQuery( document ).ready(function($) {
$(’#column-boats’).on(‘click touched’, function() {
window.location.href = ‘https://www.easttexasboatrentals.com/home.html’; });
$(’#column-vans’).on(‘click touched’, function() {
window.location.href = ‘/reservations/’; });
$(’#junglefloat’).on(‘click touched’, function() {
window.location.href = ‘https://www.easttexasboatrentals.com/home.html’; });
});
CSS:
#column-boats,
#column-vans,
#junglefloat {
cursor: pointer;
}