-
How do I?
I know this is going to sound dumb but I'm not a programmer so I have no clue. I want to have my thumbnails when clicked go into popups. I originally have a script that was suppose to do this but it always messed yup and the scripts that ive been finding on searches on google dont work great either. I just need a simple script thxs.
-
Try this:
<script language="JavaScript" type="text/javascript">
function openWin(url,name,windowname)
{
windowname=window.open(url, name, "scrollbars=yes, toolbar=yes, width=600, height=400, directories=no, status=no, resize=no, menubar=no, maximize=no, screenX=100, screenY=100");
}
</script>
put that in your <head></head>.
call on the function from a href like this:
link text
Note: you can change all the settings of the win by modifying the the attributes in the function.
-
thxs ill try that tonight.
-
You dont really need script if you dont care about the size of the popup, if you dont then just do <a href="" target="_blank">
-
vigge gave th script that i exactly wanted..i wanted ful control over the popup size....thxs anyways s7master. Thxs again vigge its really appreciated!
-
No problem dude, just glad I could help :)