Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter slui

    (@slui)

    Hi,

    Just wanted to know if this possible? Thanks.

    sl

    Thread Starter slui

    (@slui)

    I just figured this out. In the dms-front.js file you can make one slight change so that when the person selects the site it opens a new window/tab.

    I commented out window.location and put in window.open.

    jQuery(document).ready(function(){
    	//Change the page on changing of the select
    
    	jQuery(".dms-select").on('change', function(){
    		console.log(this)
    		var x = jQuery(this).val() ;
    		//window.location = x;
    		window.open(x, '_blank');
    	});
    });
    Plugin Author alordiel

    (@alordiel)

    Hello sl,

    Happy you have found the solution.
    I’m just making a new version where this option is available ??
    But I don’t know when i will release it : (

    Sorry for making you wait,
    Regards,
    al

    Thread Starter slui

    (@slui)

    No problem.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Open in New Window’ is closed to new replies.