Announcement

Collapse
No announcement yet.

Close Button

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Close Button

    Is there an easy way to have a close windows button in the pop up product info boxes?

    #2
    Hi Gary
    Is there an easy way to have a close windows button in the pop up product info boxes?
    There certainly is! Open your ExtendedInfo template and find the line
    Code:
    document.write('<A HREF="javascript:window.close();">NETQUOTEVAR:CLOSELABEL</A>');
    Change this to
    Code:
    document.write('<input type=button value=Close onClick="javascript:window.close();">');
    Save the template and preview the store.

    Ben
    Ben Popplestone
    Ecommerce website software

    Comment


      #3
      I think Ben's code got munged.

      Try
      Code:
      document.write('<input type=button value="Close" onclick="window.close();">');
      Norman
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X