function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
App DevelopmentApp Development 

How to open new browser window with tab (Not in same window tab)

I am trying to open new browser window to open with tab. currently it's display like this,
User-added image

I want to display like this,
User-added image
NagendraNagendra (Salesforce Developers) 
Hi,

May I suggest you please give a try with below code.
<script type="text/javascript">
    function redirect(){
        var link = "www.google.com";
        window.open(link,'_blank','resizable=yes');  
    }
</script>
Thanks,
Nagendra
 
App DevelopmentApp Development
This is not working. i tried it.