Please note:
This action will also remove this member from your connections and send a report to the site admin.
Please allow a few minutes for this process to complete.
// Opens Traklife Radio Player Window
$(document).ready(function() {
$('.open-radio-window').click(function(event) {
alert('test here');
event.preventDefault(); // Prevents the default link behavior
window.open('https://traklife.com/culture/radio-player/', "popupWindow", "width=600,height=600,scrollbars=yes"); // Opens a new window with specific dimensions
});
});