+52
YanOri
zayalnser
The_Great_WZ
RAtSoaDM
Glad E Olah
brenda
Xflint
MADBIKER1960
spirit09
aarul
nutsonlizards
MrMario
Stephen-
volfan537240
ClockWork
blitzkrieg
heshambb
ImProviser
Ghost24
Gangstar15
iJerick
New_Ezio
verrell123
Xanthis
Amir Spirit
mgt98
Nera.
zurri08
fascicularia
!_NICK_!
YoshiGM
cossisierra
Vlajki
karkooshy
LH Justin
Irian
KrussH
lordamit
Nomee
Ahmedvirus
SC__Programmer
Sea Starter
shawn.m
Nadenceto22
hoodedwarbler12
nemoshare
Hyphen
Mystic_gohan2
eagle8x
GamerCreutz
ElMuggs
The Godfather
56 posters
New Update: JavaScript Code Management
The Godfather- Administrator
- Posts : 5336
Reputation : 845
- Post n°1
New Update: JavaScript Code Management
First topic message reminder :
Nera.- Energetic
- Posts : 7078
Reputation : 2017
Language : English
Location : -
- Post n°32
Re: New Update: JavaScript Code Management
Fantastic update
mgt98- Forumember
- Posts : 344
Reputation : 45
Language : English
- Post n°33
Re: New Update: JavaScript Code Management
Cool, thanks. I will check it out.
Amir Spirit- Forumember
- Posts : 49
Reputation : 0
Language : iraq
- Post n°34
Re: New Update: JavaScript Code Management
Thanks
Xanthis- Forumember
- Posts : 210
Reputation : 6
Language : English
- Post n°35
Re: New Update: JavaScript Code Management
I almost fainted when I heard the news. This is amazing, thank you Forumotion.
verrell123- Forumember
- Posts : 86
Reputation : 5
Language : Indonesia, English
Location : Indonesia
- Post n°36
Re: New Update: JavaScript Code Management
This is cool!
New_Ezio- New Member
- Posts : 12
Reputation : 0
Language : Bahasa, Indonesia
Location : Bandung Paris Van Java
- Post n°37
Re: New Update: JavaScript Code Management
wow very cool boss !
iJerick- Forumember
- Posts : 98
Reputation : 1
Language : HTML, JAVASCRIPT, CSS and ENGLISH
Location : Philippines
- Post n°38
Re: New Update: JavaScript Code Management
Woo, awesome update. Thank you Forumotion for this one..
The Godfather- Administrator
- Posts : 5336
Reputation : 845
- Post n°39
Re: New Update: JavaScript Code Management
WAW! What a great boost of encouragement. A big thank you.
Last edited by The Godfather on July 6th 2011, 3:40 pm; edited 1 time in total
Gangstar15- Forumember
- Posts : 392
Reputation : 163
- Post n°40
Re: New Update: JavaScript Code Management
The first cool news
Amir Spirit- Forumember
- Posts : 49
Reputation : 0
Language : iraq
- Post n°41
Re: New Update: JavaScript Code Management
- Code:
WAW! What a great boost of encouragement. A big thank you.
I do not know how to now used
Ghost24- New Member
- Posts : 15
Reputation : 0
Language : English
- Post n°43
Re: New Update: JavaScript Code Management
So could we make our own bots now like code them and stuff or no and What can you do with the new updates?
ImProviser- Forumember
- Posts : 617
Reputation : 23
Language : Serbian, English, Deutsch
Location : Kraljevo, Serbia
- Post n°44
Re: New Update: JavaScript Code Management
Wow that's finally done. Huge + for forumotion you've got here
heshambb- New Member
- Posts : 12
Reputation : 0
Language : arabic
- Post n°45
Re: New Update: JavaScript Code Management
Fantastic update!
& i love this smile
see u
& i love this smile
see u
Last edited by heshambb on July 7th 2011, 10:16 am; edited 1 time in total
Guest- Guest
- Post n°46
Re: New Update: JavaScript Code Management
The Godfather wrote:In an effort to continuously improve our services
A really big effort ..... seriously ..... how about fixing some old bugs once in a while ?
Or REALLY checking out the requests/suggestions that members make, who would really appreciate it if you took them into consideration.
Not just accepting a few suggestions per year...
Eh.. doesn't matter, you won't read this anyway. Or even if you do, you'll just pretend you didn't see this.
blitzkrieg- Forumember
- Posts : 179
Reputation : 0
Language : English
- Post n°47
Re: New Update: JavaScript Code Management
Awesome and nice update....
ClockWork- New Member
- Posts : 11
Reputation : 0
Language : English
- Post n°48
Re: New Update: JavaScript Code Management
[Quote Removed ~ MrMario]
Really nice AND useful
Really nice AND useful
Last edited by MrMario on July 7th 2011, 6:37 pm; edited 1 time in total (Reason for editing : [Quote Removed ~ MrMario])
Guest- Guest
- Post n°49
Re: New Update: JavaScript Code Management
Why the hell did you quote the entire announcement ?? lol
It just made this page longer... thanks a lot...
It just made this page longer... thanks a lot...
Guest- Guest
- Post n°50
Re: New Update: JavaScript Code Management
(!) A must read
Apologies for double posting but it seems that this feature has a bug.
If you are familiar with html, you know what I'm talking about.
The script tag has a opening and closing tag
And when we use the "src" attribute to add an external JavaScript file, we still have to use the closing tag </script> even if there is no code between the opening the closing tags
This is W3C Standard ! But the techs actually closed the script tag in the opening tag (wich is wrong!) and added the closing tag </script>.
Only single tags must close like that ! Like <img src="image.gif" alt="Image" />, <br />, <hr /> etc.
This is a .js file I uploaded on my forum:
<script type="text/javascript" src="http://adress.forumotion.com/27338.js" /></script>
/ - what needs to be removed
This is absolutly not W3C standard !
Althought my efforts of writing this message may be in vain (and a waste of my time seeing how busy the techs are all the time), I'm trying my luck this time.
Please MrMario ! Your the only admin I can talk to, even if you're a volunteer, please make sure the PROs get this. It might cause more bugs ...
Thank you.
Apologies for double posting but it seems that this feature has a bug.
If you are familiar with html, you know what I'm talking about.
The script tag has a opening and closing tag
- Code:
<script type="text/javascript">// JavaScript codes here</script>
And when we use the "src" attribute to add an external JavaScript file, we still have to use the closing tag </script> even if there is no code between the opening the closing tags
- Code:
<script type="text/javascript" src="javascriptfile.js"></script>
This is W3C Standard ! But the techs actually closed the script tag in the opening tag (wich is wrong!) and added the closing tag </script>.
Only single tags must close like that ! Like <img src="image.gif" alt="Image" />, <br />, <hr /> etc.
This is a .js file I uploaded on my forum:
<script type="text/javascript" src="http://adress.forumotion.com/27338.js" /></script>
/ - what needs to be removed
This is absolutly not W3C standard !
Althought my efforts of writing this message may be in vain (and a waste of my time seeing how busy the techs are all the time), I'm trying my luck this time.
Please MrMario ! Your the only admin I can talk to, even if you're a volunteer, please make sure the PROs get this. It might cause more bugs ...
Thank you.
Guest- Guest
- Post n°51
Re: New Update: JavaScript Code Management
That bug is minor compared to another...if you update a javascript file, the file name changes! That makes it, um, a little difficult to manually insert these files into pages.
(One hopes the staff will not warn you over your single sentence that is in larger text. I can see it was done to make a point, and I hope they do as well. As for the double-post, well, there IS an edit button. )
(One hopes the staff will not warn you over your single sentence that is in larger text. I can see it was done to make a point, and I hope they do as well. As for the double-post, well, there IS an edit button. )
volfan537240- New Member
- Posts : 7
Reputation : 0
Language : english
- Post n°52
Re: New Update: JavaScript Code Management
i have a problem that just showed up today so im guessing its because of this update. no one can login to my chatbox. when you hover over "login" it shows javascript: void (0) at the bottom left.
can anyone help?
can anyone help?
Stephen-- Hyperactive
- Posts : 2542
Reputation : 326
Language :
- Post n°53
Re: New Update: JavaScript Code Management
thanks for this !
MrMario- Helper
- Posts : 22186
Reputation : 1839
Language : test
- Post n°54
Re: New Update: JavaScript Code Management
I forward the bug to someone who work on the French Support Forum and can send this to a tech.
Thanks for the report.
Thanks for the report.
nutsonlizards- Forumember
- Posts : 59
Reputation : 14
Language : London
- Post n°55
Re: New Update: JavaScript Code Management
i worked out why the chat gone like this its because the link has change
from
to this
from
- Code:
http://forum address./chatbox/chatbox.forum
to this
- Code:
http://forum address/chatbox/index.forum?
aarul- Forumember
- Posts : 84
Reputation : 1
Language : தமிழ்
- Post n°56
Re: New Update: JavaScript Code Management
thankssssss
volfan537240- New Member
- Posts : 7
Reputation : 0
Language : english
- Post n°57
Re: New Update: JavaScript Code Management
i found the issue with the chat link too
spirit09- Forumember
- Posts : 186
Reputation : 2
Language : English
Location : UK
- Post n°58
Re: New Update: JavaScript Code Management
volfan537240 wrote:i have a problem that just showed up today so im guessing its because of this update. no one can login to my chatbox. when you hover over "login" it shows javascript: void (0) at the bottom left.
can anyone help?
Same here - very annoying as I had a scheduled chat at 10pm - now cancelled!!!!!!!!!!!!!
MADBIKER1960- Forumember
- Posts : 97
Reputation : 0
Language : English
Location : Toronto, Ontario. CANADA
- Post n°59
Re: New Update: JavaScript Code Management
Finally we get to have our own stats page on my site for the members.
This is going to make my community so happy
Thanks and keep up the good work.
MB
This is going to make my community so happy
Thanks and keep up the good work.
MB
MADBIKER1960- Forumember
- Posts : 97
Reputation : 0
Language : English
Location : Toronto, Ontario. CANADA
- Post n°60
Re: New Update: JavaScript Code Management
spirit09 wrote:volfan537240 wrote:i have a problem that just showed up today so im guessing its because of this update. no one can login to my chatbox. when you hover over "login" it shows javascript: void (0) at the bottom left.
can anyone help?
Same here - very annoying as I had a scheduled chat at 10pm - now cancelled!!!!!!!!!!!!!
Try hooking up a link into your header bar, like I did: World United.
It may help out.
MB