Hi I want to open window in new tab with javascript without changing browser settings
Below is the piece of code i ave written.. bt for that i need to change IE settings to "internet explorer decide how pop-ups should be open"
function open_in_new_tab(url)
{
window.open(url,'_blank');
}