CåñåÐå™ Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/images-hrn.jpeg) Posts: 427 Status: Offline Gender: Male Location: Toronto Ontario Joined:
pmwww | Code Please (6th Jun 08 at 2:44am UTC) Resolved | | I'm wondering if this would be possible.
Ok say i'm starting an new thread . And i made the topic title like this : "THE RED BOAT" , is it possible to have a code which will make it this : "The Red Boat", or if it was this : "The red boat" it will make it this : "The Red Boat" . But it will work only for topic titles . | |
 click here We have 15 Different Skins/Templates for your vForum |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Code Please (6th Jun 08 at 3:19am UTC) | | So you mean auto-capitalization? I'll do this in a moment. | |
rroll.to— Shorten a link, rickroll your friends. |
|
CåñåÐå™ Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/images-hrn.jpeg) Posts: 427 Status: Offline Gender: Male Location: Toronto Ontario Joined:
pmwww | Re: Code Please (6th Jun 08 at 5:33am UTC) | | Ok thanks Marc . | |
 click here We have 15 Different Skins/Templates for your vForum |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Code Please (6th Jun 08 at 8:46pm UTC) | |  Code: - <script type="text/javascript">
- <!--
- /*
- Auto-Capitalize Post Titles by Marc
- Copyright 2008
- Do not repost
- */
-
- var a = get('a','tag');
- for(t=0;t<a.length;t++){
- if(a[t].href.match(/\/view_topic\/page\/(\d+)\/(.+?)\//)){
- a[t].innerHTML = a[t].innerHTML.substring(0,1).toUpperCase() + a[t].innerHTML.substring(1,a[t].innerHTML.length).toLowerCase();
- }
- }
- //-->
- </script>
Board/Global Footers. | |
rroll.to— Shorten a link, rickroll your friends. |
|
CåñåÐå™ Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/images-hrn.jpeg) Posts: 427 Status: Offline Gender: Male Location: Toronto Ontario Joined:
pmwww | Re: Code Please (6th Jun 08 at 9:07pm UTC) | | Thank you Marc , its working fine . Nice work . | |
 click here We have 15 Different Skins/Templates for your vForum |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Code Please (6th Jun 08 at 10:01pm UTC) | | No worries.  | |
rroll.to— Shorten a link, rickroll your friends. |
|