Jason
Murderator
The Crypt Keeper
Posts: 12,383
Gender:
Favorite Films: Clue, Unforgiven, Friday the 13th Part IV
Last Online: Nov 29, 2024 11:14:46 GMT -8
|
Post by Jason on Jul 20, 2007 8:51:22 GMT -8
Woo!! My first javascript code.. Basically all I did was make it compatible with another code.. Here's what I'm talking about.. I found a code that adds a 'New Topic' option while you're viewing a thread.. Well with that 'New Topic' option.. I feel there should be a 'New Poll' option next to it.. So with nothing to lose I edited the code.. Here's what I did... The New Topic Code <script type="text/javascript"> <!-- /* 'new thread' button next to reply */ if(location.href.match(/board=(\w+)&(action|thread)=/)) { var img = document.getElementsByTagName('img'); for(l=0; l<img.length; l++) { if(img[l].alt == '[Reply]') { img[l+1].src = 'New Thread Image URL'; img[l+1].alt = '[New Thread]'; img[l+1].parentNode.href = '/index.cgi?&board='+RegExp.$1+'&action=post'; } } } //--> </script> Here's what I changed <script type="text/javascript"> <!-- /* 'new poll' button next to reply */ if(location.href.match(/board=(\w+)&(action|thread)=/)) { var img = document.getElementsByTagName('img'); for(l=0; l<img.length; l++) { if(img[l].alt == '[ New Topic]') { img[l+1].src = 'New Poll Image URL'; img[l+1].alt = '[ New Poll]'; img[l+1].parentNode.href = '/index.cgi?&board='+RegExp.$1+'&action= createpoll'; } } } //--> </script> Hey.. I know it was simple.... It was my first time even attempting this. So I can be a little proud right? Don't make fun.
|
|
Mauvaise
Dr. Herbert West
elle est seule
Posts: 482
Gender:
Last Online: Sept 25, 2009 2:02:08 GMT -8
|
Post by Mauvaise on Jul 20, 2007 8:57:32 GMT -8
Nerd!
|
|
Jason
Murderator
The Crypt Keeper
Posts: 12,383
Gender:
Favorite Films: Clue, Unforgiven, Friday the 13th Part IV
Last Online: Nov 29, 2024 11:14:46 GMT -8
|
Post by Jason on Jul 20, 2007 8:58:29 GMT -8
I knew it.. I knew you were gonna say that.. I KNEW IT!! Haha..
|
|
Mauvaise
Dr. Herbert West
elle est seule
Posts: 482
Gender:
Last Online: Sept 25, 2009 2:02:08 GMT -8
|
Post by Mauvaise on Jul 20, 2007 9:01:00 GMT -8
I says what I be thinkin
|
|
Jason
Murderator
The Crypt Keeper
Posts: 12,383
Gender:
Favorite Films: Clue, Unforgiven, Friday the 13th Part IV
Last Online: Nov 29, 2024 11:14:46 GMT -8
|
Post by Jason on Jul 20, 2007 9:02:41 GMT -8
You know you wanna add that code to your forum. DO NOT deny it. Haha..
|
|
Lucian
Dr. Hannibal Lecter
Posts: 2,294
Gender:
Last Online: Aug 6, 2009 17:07:53 GMT -8
|
Post by Lucian on Jul 20, 2007 9:53:03 GMT -8
I so going to use it. *Swaps it* hehe. Nice code buddy.
|
|
Jason
Murderator
The Crypt Keeper
Posts: 12,383
Gender:
Favorite Films: Clue, Unforgiven, Friday the 13th Part IV
Last Online: Nov 29, 2024 11:14:46 GMT -8
|
Post by Jason on Jul 20, 2007 9:53:54 GMT -8
Haha.. Go for it.. I thought it was useful..
|
|
Lucian
Dr. Hannibal Lecter
Posts: 2,294
Gender:
Last Online: Aug 6, 2009 17:07:53 GMT -8
|
Post by Lucian on Jul 20, 2007 9:56:43 GMT -8
Haha.. Go for it.. I thought it was useful.. Yeah, it does look nice...should post it on PB...naw, nevermind. If they've been an ass to you in the pass, it's fair to say that you should keep this for yourself & friends to use.
|
|
Jason
Murderator
The Crypt Keeper
Posts: 12,383
Gender:
Favorite Films: Clue, Unforgiven, Friday the 13th Part IV
Last Online: Nov 29, 2024 11:14:46 GMT -8
|
Post by Jason on Jul 20, 2007 10:06:14 GMT -8
True.. I'm surprised they never noticed you can do that.. They're Javascript geniuses and my stupid ass found a way to make it compatible with another one. Woo yeah!!
|
|
Lucian
Dr. Hannibal Lecter
Posts: 2,294
Gender:
Last Online: Aug 6, 2009 17:07:53 GMT -8
|
Post by Lucian on Jul 20, 2007 10:12:49 GMT -8
True.. I'm surprised they never noticed you can do that.. They're Javascript geniuses and my stupid ass found a way to make it compatible with another one. Woo yeah!! That's awesome. I was thinking making Compact Info Center v666 of my choice one day...I toke lil practice of it months earlier, and it seems fun.
|
|