| |
Copy and past the example in the placeholder just upper. And then update the
code for your specific action. (for example you can update open window options
like width or scrollbars).
---------------------------------------------------------------------------------------------------------
Examples To Edit Flash Link:
Code for generic flash open window:<BR>functionFlashAction(){window.open('http://www.tefal.com','MyPopupName','width=333,height=187,scrollbars=0,resizable=0,status=0')
}
Code for specific or existing flash open window:<BR>functionlink_marcnewson(){window.open('http://www.tefal.com','marcnewson','width=333,height=187,scrollbars=0,resizable=0,status=0')
}
Code for generic flash link (in same window):
function FlashAction(){ window.location='http://www.tefal.com' }
---------------------------------------------------------------------------------------------------------
Examples To Edit Gif Link:
Code for Gif open window :
<ahref="javascript:void(window.open('http://www.tefal.com','MyPopupName','width=333,height=187,scrollbars=0,resizable=0,status=0'))">
Code for generic Gif link (in same window):
<a href="http://www.tefal.com">
|
|