Popup window

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I have a cool Modal Window Code from Linkno.

I want to use this with 'products' using the html text box.

Is this possible?

<body>
<!-- ******** BEGIN LIKNO WEB MODAL WINDOWS CODE FOR likno-modal-project ******** -->
<script type="text/javascript">var lwmwLinkedBy="LiknoWebModalWindows [1]",lwmwName="likno-modal-project",lwmwBN="142";</script><script charset="UTF-8" src="likno-scripts/likno-modal-project.js" type="text/javascript"></script>
<!-- ******** END LIKNO WEB MODAL WINDOWS CODE FOR likno-modal-project ******** -->
<a id="Modal_Window_1" href="javascript:void(0);">Test modal</a>
</body>
13 years ago
an example of it working

https://market-umbrella-usa.com/test.htm

When I try to incorporate it on a product page, it does not work.

Thanks for any help!
13 years ago
konazito wrote:
I have a cool Modal Window Code from Linkno.

I want to use this with 'products' using the html text box.

Is this possible?

<body>
<!-- ******** BEGIN LIKNO WEB MODAL WINDOWS CODE FOR likno-modal-project ******** -->
<script type="text/javascript">var lwmwLinkedBy="LiknoWebModalWindows [1]",lwmwName="likno-modal-project",lwmwBN="142";</script><script charset="UTF-8" src="likno-scripts/likno-modal-project.js" type="text/javascript"></script>
<!-- ******** END LIKNO WEB MODAL WINDOWS CODE FOR likno-modal-project ******** -->
<a id="Modal_Window_1" href="javascript:void(0);">Test modal</a>
</body>


im sure you would need some thing similar to this >>>>>>>>>>>>>>>>>>>>>>>>

*********************************************************************************************
<script language="JavaScript1.2">

//Daily iframe content- ********************************
//For full source code, and Terms Of use, visit http://**************
//This credit MUST stay intact for use

var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

//Specify IFRAME display attributes
var iframeprops='width=150 height=150 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="1" scrolling="no"'

//Specify 7 URLs to display inside iframe, one for each day of week
var daycontent=new Array()
daycontent[1]="monday.htm" //Monday content
daycontent[2]="tuesday.htm" //Tuesday content
daycontent[3]="wednesday.htm"
daycontent[4]="thursday.htm"
daycontent[5]="friday.htm"
daycontent[6]="saturday.htm"
daycontent[0]="sunday.htm"

//No need to edit after here
if (ie||dom)
document.write('<iframe id="dynstuff" src="" '+iframeprops+'></iframe>')

var mydate=new Date()
var mytoday=mydate.getDay()

function dayofweek_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=daycontent[mytoday]
}
}

window.onload=dayofweek_iframe

</script>
*********************************************************************************************

good luck
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.