#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Feb 19, 2011 10:03:15 GMT -8
Code Index > Additional Posting Hacks > Ultimate Quick Reply Mod (http://support.proboards.com/index.cgi?action=display&board=codedatabase&thread=358479) Another broken link. 'tis gone. Thanks.
|
|
inherit
*this CT deserves an achievement*
136400
0
Jun 25, 2021 18:23:00 GMT -8
Trill
hola
6,232
January 2009
ghbraingle
|
Post by Trill on Mar 6, 2011 18:19:34 GMT -8
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Mar 6, 2011 20:43:05 GMT -8
I just sent moose an email to find out if he would be okay with it being reposted in a different database since Patrick is trying to weed out remotely hosted codes. If he doesnt respond in a week I will just have to pull the code out completely.
|
|
inherit
134992
0
May 26, 2012 2:38:57 GMT -8
SubDevo
Creator of LSD...
3,861
December 2008
subdevo
|
Post by SubDevo on Apr 13, 2011 18:54:15 GMT -8
Another crazyJ variable issue... support.proboards.com/index.cgi?board=codedatabase&action=display&thread=70495The variable "Image" causes a conflict with other codes (IOD code support). Changing the variable name to something other than "Image" solves the problem. EDIT:On a side note, not an error but this line creates an anchor, and it is never used... var Link = document.createElement('a');
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Apr 13, 2011 19:46:09 GMT -8
code updated with new variable names.
|
|
inherit
134992
0
May 26, 2012 2:38:57 GMT -8
SubDevo
Creator of LSD...
3,861
December 2008
subdevo
|
Post by SubDevo on Apr 17, 2011 22:08:17 GMT -8
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Apr 18, 2011 1:48:45 GMT -8
updated. excellent work buddy.
|
|
inherit
154023
loverslight_90@yahoo.com lucifersangel70
0
Jan 2, 2014 0:48:05 GMT -8
loverslight
10
May 2010
loverslight
|
Post by loverslight on May 27, 2011 12:30:13 GMT -8
Hello I don't know if this is the right place but My website Jack's Lament isn't working I can't scroll down! . Heck I can't even log in. I was wondering if you knew how to fix that please reply I want to get my site back up and going.
|
|
Former Member
inherit
guest@proboards.com
134807
0
Nov 23, 2024 1:02:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on May 27, 2011 13:01:45 GMT -8
|
|
inherit
152066
0
Sept 27, 2012 16:34:28 GMT -8
cosmich
132
February 2010
cosmich
|
Post by cosmich on Jun 13, 2011 13:38:45 GMT -8
Share on any social network by subdevo I realize some of this functionality has been replaced directly by Proboards but a lot of people still use this code. Facebook seems to more or less work but Twitter does not seem to capture the link. Is it worth updating the code or just switching to the Share function for proboards? I kind of like this code because it shows the icons for the various networks... support.proboards.com/index.cgi?board=codedatabase&action=display&thread=358390
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jun 15, 2011 23:49:39 GMT -8
I will alert him to this
|
|
inherit
168049
0
Feb 8, 2023 21:54:11 GMT -8
hpmad
7
June 2011
hpmad
|
Post by hpmad on Jun 30, 2011 13:58:12 GMT -8
Hey, I know I have a bunch of codes that aren't working... and my previous account was banned (I don't even know if I'm allowed to be here hahaha) so I can't really make changes, and I'm not around ProBoards anymore.
I've seen lots of support threads concerning the broken codes, so here's my permission to change/update anything you want.
And you can remove the copyright stuff too.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jun 30, 2011 17:08:32 GMT -8
thank you hpmad. we will work on them as they come up from now on.
|
|
inherit
The Final Cylon
31521
0
Mar 3, 2015 14:39:33 GMT -8
Trublu
Maybe the duck is in the hat.
12,323
October 2004
trublusvufan
|
Post by Trublu on Jul 13, 2011 7:42:12 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jul 16, 2011 5:29:32 GMT -8
The Style tag code however would be a problem due to the way it adds its button since to be compatible with any other custom UBBC code that runs before it and has added an event using DOM1 event binding (e.g obj.onclick=) it would need a modification. By using document.postForm.color.parentNode.innerHTML+= it causes every UBBC/drop down to be deleted then recreated (that's just how innerHTML works), however the recreated element won't have the event that was bound to it recreated, so clicking, changing, etc. would now do nothing. To avoid that the style tag code would need to use a pure DOM method to add its button or employ the hybrid method used by Todge's spoiler code which basically adds a span using DOM first then the innerHTML modification is limited to just that span rather than affecting everything in the cell/font. The edit for the Style tags code so it can work with codes that adds content to the UBBC tray with DOM event bindings is if(document.postForm) { document.postForm.color.parentNode.appendChild(document.createElement('span')); document.postForm.color.parentNode.lastChild.innerHTML+='<a href="javascript:add(\'[style=]\',\'[/style]\')"><img src="http://i52.tinypic.com/66x2m1.png" alt="Style" border="0" /></a>'; }
right now it will only work with such a code if it runs before such a code. It looks like "Dice Rolls In Posts v1.1" also adds to the innerHTML. mainForm.color.parentNode.innerHTML+="<a href=javascript:add...
|
|