Web Design Forums

Javascript, AJAX, and JSON

Having problems with Javascript? Need help picking a library? Post your questions here.

Javascript, clickable random images, pop-ups and multiple pop up window sizes



Site of the Month Voting - Now Open. CAST YOUR VOTE NOW!

Reply
 
LinkBack Thread Tools
Old August 19 '03, 10:49 PM (#1)
btp5000 is offline
New Member!
 
btp5000's Avatar
 
Join Date: August 2003
Posts: 2
btp5000
Javascript, clickable random images, pop-ups and multiple pop up window sizes

Howdy,

Transio did a GREAT script for Amanda on her arrowpath site ( http://www.arrowpathvc.com) with the randomimage.js code, but I need the same type of script (random images on reload with a pop up window for each randomly loaded image) with one more function added to that script:

which is I need to also be able to call two different functions, that is, to be able to call ONE of two different sized pop up windows when an image is clicked on.

Currently I have two styles of images that will load in a pop-up window: a vertical style and a horizontal style. The images that load in the main window are the same size, but after they are clicked on, the images that show up in the pop-up window require at least two different sized pop-up windows so that I can adjust how they hug the image area. My pop up windows also have descriptive text in them, so I can't just dynamically resize the window to fit the image.

Is this a possibility or am I overloading JS functionality/capability?

Snippet from Tranisos code:

function openWindow(url, w, h) {
win = window.open(url, null, 'top=100, left=100, width=' + w + ', height=' + h + ', scrollbars=yes, status=no, menubar=no, resizable=no, titlebar=no, toolbar=no, location=no');
win.focus();
}


So what I would want is the capability (somehow) of adding another window function the way you do in normal multiple functions to open multiple windows, such as:

function openWindow(url, w, h) {
win = window.open(url, null, 'top=100, left=100, width=' + w + ', height=' + h + ', scrollbars=yes, status=no, menubar=no, resizable=no, titlebar=no, toolbar=no, location=no'); win.focus();
}

function openWindow2(url, w, h) {
win = window.open(url, null, 'top=100, left=100, width=' + w + ', height=' + h + ', scrollbars=yes, status=no, menubar=no, resizable=no, titlebar=no, toolbar=no, location=no');
win.focus();
}

Many SUPER thanks in advance if anyone has an answer to my conundrum.

BTp
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  Web Design Forums » Programming Help » Javascript, AJAX, and JSON

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
User Infomation
Your Avatar

Site Of The Month
Nominate Your Site Now!

Advertisement
WolfCMS.org

Latest Articles
- by RickM
- by bfsog

Advertisement

Partner Links



All times are GMT -4. The time now is 02:00 PM.


WebDesignForums.net is Copyright © 2010 RikeMedia.

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164