vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB5 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=262)
-   -   Pop ups (https://vborg.vbsupport.ru/showthread.php?t=322809)

ZiBoom 06-08-2016 10:11 PM

Pop ups
 
Whenever we link to a pop up page (say, youtube video), the thread jumps from the topic area where the pop up link resides to the main page. Is there any way to stop that? I apologize as I am a bit of a coding newbie.:confused:

I am using the latest version of VBB 5.

noypiscripter 06-09-2016 07:09 PM

How do you link to a popup page?

ZiBoom 06-10-2016 04:56 AM

Sorry...I should have written this better.

I want a link to pop up in a separate window.

Thanks

cellarius 06-10-2016 09:42 AM

Since you're not giving any detail - for example: how exactly are you triggering the popup? Code! - its hard to help.

Anyway - this is probably a javascript issue. You probably need to add "return false" to the code somewhere. There's plenty of examples around the net.

ZiBoom 06-10-2016 03:05 PM

I will give that a try. Thank you :D

Also, whilst I understand there are different examples, my problem was a bit more complicated. I am able to get the link to open up in another pop up window. However, the page where the link exists always bounces back to the main page.

Thanks

noypiscripter 06-10-2016 04:08 PM

You must be using something like this. You have to add return false to the onclick handler.

Code:

<a href="#" onclick="window.open('https://www.youtube.com/watch?v=NZYXNofi6zI', '_blank', 'width=400,height=300'); return false;">Watch</a>
But the better code is:

Code:

<a href="https://www.youtube.com/watch?v=NZYXNofi6zI" onclick="window.open(this.href, this.target, 'width=400,height=300'); return false;" target="_blank">Watch</a>

cellarius 06-10-2016 06:20 PM

Quote:

Originally Posted by ZiBoom (Post 2571918)
I will give that a try. Thank you :D

Also, whilst I understand there are different examples, my problem was a bit more complicated. I am able to get the link to open up in another pop up window. However, the page where the link exists always bounces back to the main page.

Thanks

Yes. That's clear. But why do you keep that tiny bit of code from us that actually opens the popup? That's what's causing the error. Why should we guess if you could simply give us something to look at?

ZiBoom 06-11-2016 03:54 AM

My apologies, but many thanks for your help as that was the trick.

I did not paste the entire code thread here because this is a separate computer from the one I use for coding. But here is the final solution. If I typo, forgive me...but this works on VBB 5

a href="" onclick="window.open('URL', 'TITLE, width=XXX,height=XXX'); return false;">

noypiscripter 06-13-2016 11:41 PM

That works. But as I mentioned in post #6, the better solution is to put the url in href. The reason is this still give users a choice to open the link in a new tab instead of the popup window by right-clicking the link and choosing 'Open link in new tab' option.


All times are GMT. The time now is 02:42 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01033 seconds
  • Memory Usage 1,727KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete