PDA

View Full Version : html help:)


AN-net
09-26-2004, 10:07 PM
ok well how would i make so when someone clicks a link that leads to a new window, that i can control its width:)

Xenon
09-26-2004, 10:14 PM
to change the size of a window isn't doable with html alone iirc.

you have to use JavaScript for that, and so you'll get some which have disabled that ;)

Natch
09-27-2004, 05:11 AM
There are 2 ways of creating and dealing with popups gracefully:

Simple.a href="#" onclick="{mypopupcode}; return false"The purpose of this is to stop the browser doing the Anchor-jump to the top of the page, looking for the blank a name="" anchor ('cos of a href="#").

Slightly more complex.a href="mypopup.html" target="popup" onclick="if(mypopup(this.href,this.target,popupsettings)) return false"This one is based on [i]mypopup[/b] being a function you write, not relying on the window.open statement. The function "mypopup" will return NULL if the browser/screen reader/other web tool doesn't support the window.open facility and therfore open the popup page as it would normally do without the popup being there ... but if the function returns something, then the "return false" kicks in and stops the href doing its normal thing, while your pop up is popping away as you designed ...

[If the above looks like a canned response, it's cos I had it written months ago and it's an aticle on an old website of mine...]

So: if you create a javascript function to deal with your popups, have it return true if the popup works - that way you can determine if the javascript works and therefore return false to the regular browser behaviour and not load the link normally, but if the function refturns false, then your regular browser behaviour kicks in and your link still opens in a new window via the target="popup" HTML script.

AN-net
09-27-2004, 10:56 PM
would it work like this?:

<a href="popup.html" target="popup" onclick="window.open('popup.html', 'popup', 'height=200,width=200')">blah</a>

Modin
09-27-2004, 11:12 PM
looks right to me AN-net, though just throw it in a test page and test it out :)

Natch
09-28-2004, 12:35 AM
would it work like this?:

<a href="popup.html" target="popup" onclick="window.open('popup.html', 'popup', 'height=200,width=200')">blah</a>


<a href="popup.html" target="popup" onclick="if(window.open(this.href, this.target, 'height=200,width=200')) return false">blah</a>
Try that: but yes the above would work too, you would just have the page behind change as well as popping up in a new window...

AN-net
09-28-2004, 12:42 AM
kool thanks alot:)

now i need another thing, how do i make an action in one window affect another, like vb's attachment system. when you upload something it updates the post window and with the uploaded attachments, how would i achieve this?

Natch
09-28-2004, 12:54 AM
Far more complex: now you are talking about the DOM and parent / child relationships...

How much knowledge do you have on Javascript?

AN-net
09-28-2004, 02:12 AM
i would say fairly little....

Pitman
09-29-2004, 01:28 PM
kool thanks alot:)

now i need another thing, how do i make an action in one window affect another, like vb's attachment system. when you upload something it updates the post window and with the uploaded attachments, how would i achieve this?
I was wondering the same thing if anyone cares to shed some light on this :)

Natch
09-29-2004, 07:36 PM
I had a reason to look into this further just recently...

Well with the DOM, you can refer to a form field by "name" with the following structure:document.formname.fieldname.valueTo refer to the page which opened the popup window, you should instead use the following structure:this.opener.formname.fieldname.valueIf this is not enough information, an example would be<a href="#" onclick="this.myform.submit();this.opener.location='newpage .html';this.close();return false">click here to submit, change the parent page to the url defined and then close this window</a>

AN-net
10-09-2004, 02:56 PM
i cant get this to work:(

Natch
10-09-2004, 10:57 PM
Can you point me to where you are trying this, and I'll take a look?