set default target to New Window in Tag_A.ascx?

  •  07-07-2005, 2:59 PM

    set default target to New Window in Tag_A.ascx?

    Hi,
     
    I want to swap the 'Target' option values in the Tag_A dropdown list so that the default is 'New Window'. 


    When I swap this:
     
     <SELECT id="inp_target" NAME="inp_target">
     <OPTION value="" selected>[[Samewindow]]</OPTION>
     <OPTION value="newWin">[[Newwindow]]</OPTION>
     </SELECT> 
     
    to this:
     
     <SELECT id="inp_target" NAME="inp_target">
     <OPTION value="newWin" selected>[[Newwindow]]</OPTION>
     <OPTION value="" >[[Samewindow]]</OPTION>
     </SELECT> 
     
    ..it doesn't work; even when I select 'Same Window' from the dropdown list, the newWin value is always passed.

    Is there an easy way round this?
     
    Thanks,
     
    Ed
View Complete Thread