collapse

* User Info

 
 
Welcome, Guest. Please login or register.
Did you miss your activation email?

* Who's Online

  • Dot Guests: 40
  • Dot Hidden: 0
  • Dot Users: 1
  • Dot Users Online:

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • Skaty: [link]
    May 21, 2013, 02:54:27 PM
  • Skaty: tooltip in sp block
    May 21, 2013, 02:54:20 PM
  • Tattoocu_CarteL: neden adres yazınca link diye çikiyor direk adres çiksa olmaz mı
    May 19, 2013, 11:54:41 AM
  • Tattoocu_CarteL: [link]
    May 19, 2013, 11:54:26 AM
  • Old Fossil: Hey Nathaniel
    May 16, 2013, 09:41:05 AM
  • Nathaniel: lurk
    May 16, 2013, 03:19:14 AM
  • omidmavi1986: :'(
    May 15, 2013, 05:51:48 AM
  • DeToX: very nice simple mod's like!
    May 09, 2013, 01:32:03 PM
  • dhayzon: ;D
    May 09, 2013, 12:38:23 PM
  • dhayzon: xd
    May 09, 2013, 12:38:19 PM
  • dhayzon: hola y les hablo en español me gusta mucho el portal
    May 09, 2013, 12:38:12 PM
  • la muerte: If only I'd know how to fix it :D
    May 06, 2013, 11:24:15 AM
  • la muerte: I might have found the reason many sites have issues with shoutbox refresh looping on post etc [link]
    May 06, 2013, 11:23:57 AM
  • apo: elinize saglik beyler
    May 03, 2013, 02:08:40 PM
  • [SiNaN]: Well, you can't do much about it. I'm sure everyone is trying their best but it's not easy. At least old solved topics may provide a clue for those having similar problems I hope.
    May 02, 2013, 11:33:00 AM
  • JohnS: Wow! visited site earlier and 3 users online - that must be a record lately. I ca't see point of support pages here as number of posts with zero replies is big!
    May 02, 2013, 08:46:34 AM
  • rocknroller: what is up
    April 30, 2013, 02:06:06 PM
  • rocknroller: hey
    April 30, 2013, 02:05:53 PM
  • dhayzon: Shoutbox in an iframe is possible
    April 27, 2013, 11:00:14 AM

* Team Blog

* Recent Posts

Re: Only certain topics by DeToX
[Yesterday at 07:34:38 AM]


Re: Custom Message Block by Hoodie
[May 23, 2013, 01:39:56 PM]


Re: Roster by Hoodie
[May 23, 2013, 12:36:47 PM]


¿como agrego un chat a mi foro? by cachencho29
[May 23, 2013, 10:28:23 AM]


¿como agrego un contador de visitas? by cachencho29
[May 23, 2013, 10:25:24 AM]

Thanks for having an interest with our portal. If you have any requests for features, have a look at the Feature Requests board.

Author Topic: Changing forum title if there is new shout  (Read 1062 times)

0 Members and 1 Guest are viewing this topic.

Offline phantomm

  • Translator
  • *
  • Posts: 304
  • Gender: Male
  • Smile, tomorrow will be worse...
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Changing forum title if there is new shout
« on: February 28, 2013, 09:18:03 AM »
Hi, so I've been trying to make something like this:

If there is new shout in SP Shoutbox forum title would be changed to "New shout!", but when you visit tab/window with this shourbox it should be changed to default forum title.

I know how and where* use document.title = 'New shout!';. Problem is how to reset forum title to default after visiting page, without need to refresh whole page?

* - you need to add document.title before this code in portal.js
Code: [Select]
}

setInnerHTML(document.getElementById('shouts_' + shoutbox_id), new_body);
« Last Edit: February 28, 2013, 09:20:31 AM by phantomm »

Offline Underdog

  • Support
  • *
  • Posts: 527
  • Gender: Male
  • SMF Arcade Admin
    • askusaquestion.net
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: Changing forum title if there is new shout
« Reply #1 on: February 28, 2013, 10:32:27 AM »
phantomm,

  Imo use DOM or javascript.

Here it is using javascript:
Code: [Select]
echo '<script type="text/javascript">
    document.title = "New Page Title";
  </script>';


Offline phantomm

  • Translator
  • *
  • Posts: 304
  • Gender: Male
  • Smile, tomorrow will be worse...
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: Changing forum title if there is new shout
« Reply #2 on: February 28, 2013, 12:01:50 PM »
Thanks for repy, but this code will change title right after page will be loaded.
What I need to have here is JS to set specified forum title when user will go to already open tab.

Offline Underdog

  • Support
  • *
  • Posts: 527
  • Gender: Male
  • SMF Arcade Admin
    • askusaquestion.net
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: Changing forum title if there is new shout
« Reply #3 on: March 04, 2013, 01:49:42 AM »
Thanks for repy, but this code will change title right after page will be loaded.
What I need to have here is JS to set specified forum title when user will go to already open tab.

phantomm,

  My apologies for the late reply as I am working on a project as of late.
I have not tested it but you put what I posted in a js function & have it execute the function when the shout button or ie. onkeydown keycode 13 (return/enter) is executed if I understand you correctly.

Code: [Select]
echo '<script type="text/javascript">
onLoad = function changeTitle() {
    document.title = "New Page Title";
}
  </script>';
.. then in the js for what I mentioned prior you execute changeTitle()