$('.menu div.profile-btn').on('click', function () {
$('.mainservice-page').fadeIn(1200);
}
The above script opens the contents of the div .mainservice-page
successfully, but I want to open them in a new tab.
How can I do that?
Thanks in advance.