Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Click A Button And Opens A Popup Window?
Old 03-11-2008, 06:09 AM Click A Button And Opens A Popup Window?
Experienced Talker

Posts: 36
Trades: 0
Hi,

Does anyone know how to do this, well how to code it.

I want to be able to let people click on an IMAGE that says print, and a popup window opens with a small brochure available for print (this brochure will just be another page btw).

I hope someone can help.

Thanks
Thanks
andantesash is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 03-11-2008, 06:35 AM Re: Click A Button And Opens A Popup Window?
rolda hayes's Avatar
Wannabe Adventurer...

Posts: 961
Name: Darren
Location: England
Trades: 0
Add this to the HEAD section of your page.

Code:
<script language="javascript">
<!--
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_changeProp(objName,x,theProp,theValue) { //v6.0
  var obj = MM_findObj(objName);
  if (obj && (theProp.indexOf("style.")==-1 || obj.style)){
    if (theValue == true || theValue == false)
      eval("obj."+theProp+"="+theValue);
    else eval("obj."+theProp+"='"+theValue+"'");
  }
}
//-->
</script>
create a link to your page and add thsi after the url. changing the size as you need
[codeonClick="NewWindow(this.href,'name','500','500 ','no');return false">[/code]

then add this for the print link on your new page
Code:
<HTML><HEAD>
<TITLE>ASP Web Pro</TITLE>
</HEAD> 

<BODY>
<SCRIPT LANGUAGE="JavaScript">

// This small script displays a Print button
<FORM>
<input type="button" value="Print" Onclick="print()" ;>
</FORM>

// This small script displays a Print link
<a href="javascript:print()">Print</a>
</SCRIPT> 

</BODY>
</HTML>
__________________
I Just a test to see what happens...
Please login or register to view this content. Registration is FREE

"Let us be thankful for the fools. But for them the rest of us could not succeed..."

Last edited by rolda hayes; 03-11-2008 at 06:41 AM..
rolda hayes is offline
Reply With Quote
View Public Profile
 
Old 03-11-2008, 06:43 AM Re: Click A Button And Opens A Popup Window?
Experienced Talker

Posts: 36
Trades: 0
Thankyou very much
andantesash is offline
Reply With Quote
View Public Profile
 
Old 03-12-2008, 02:32 AM Re: Click A Button And Opens A Popup Window?
Ultra Talker

Posts: 262
Trades: 0
A good design practice would be to put all that javascript into a separate file and then link this file to your web page.
__________________

Please login or register to view this content. Registration is FREE
|

Please login or register to view this content. Registration is FREE
|

Please login or register to view this content. Registration is FREE
|

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
jbladeus is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Click A Button And Opens A Popup Window?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.89428 seconds with 12 queries