Results 1 to 3 of 3

Thread: Open javascript link in same window

  1. #1
    Join Date
    Feb 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Open javascript link in same window

    Hi!

    I'm a complete newbie and I need some help.

    I have this piece of code which is opening link in new window:

    Code:
    <script type="text/javascript">//<![CDATA[
    document.write('<a href="javascript:void window.open(\'<?php echo $product_flypage ?>\');">');
    document.write( '<?php echo ps_product::image_tag( $product_thumb_image, 'class="browseProductImage" target="_self" border="0" title="'.$product_name.'" alt="'.$product_name .'"' ) ?></a>' );
    //]]>
    </script>
    How to change this code so link would open in the same window?
    Probably I should change this part: javascript:void window.open

    Thanks for your help!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    <script type="text/javascript">//<![CDATA[
    document.write('<a href="<?php echo $product_flypage ?>" target="_self">');
    document.write( '<?php echo ps_product::image_tag( $product_thumb_image, 'class="browseProductImage" border="0" title="'.$product_name.'" alt="'.$product_name .'"' ) ?></a>' );
    //]]>
    </script>
    But, at that point, no javascript is required:

    PHP Code:
    <a href="<?php echo $product_flypage ?>" target="_self">
    <?php echo ps_product::image_tag$product_thumb_image'class="browseProductImage" border="0" title="'.$product_name.'" alt="'.$product_name .'"' ?></a>
    should do just fine.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Feb 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Of course!

    In fact that code was modified, javascript was used to display image with slimbox effect, but I changed it to link.

    Thanks, it works!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •