This topic was locked 26th Mar 08 at 10:29am by Michael |
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 | [F] Prompting For Hyperlinks Please (25th Mar 08 at 4:27pm UTC) Requests | | I'll like a code for when you click on the url button (in the ubbc) that it will have an prompt box pop-up . It will have "Enter Link" and then you will enter the link, and click ok once you click ok it would then have "Enter Text" which you would enter an word to show in post , and not the link . when you click on the word you will go to where its linked to.
(Like what InvisionFree has for its url hyperlink)
Thanks .
http://tropolis.virtualforums.co.uk/ | |
 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: Prompting For Hyperlinks Please (25th Mar 08 at 9:02pm UTC) | | Give me a minute. | |
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: Prompting For Hyperlinks Please (26th Mar 08 at 2:22am 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: Prompting For Hyperlinks Please (26th Mar 08 at 3:13am UTC) | |  Code: - <script type="text/javascript">
- <!--
- /*
- URL Popup by Cr0w
- Copyright 2008
- Do not repost
- */
-
- function urlPrompt(){
- var url = prompt("What is the location you would like to link to?","http://");
- if(url != "" && url != null){
- var urlName = prompt("What would you like to name the link?","");
- if(urlName != "" && urlName != null){
- if(document.post_form){
- document.post_form.message.value += "[url=" + url + "]" + urlName + "[/url]";
- }
- else if(document.quick_reply_form){
- document.quick_reply_form.message.value += "[url=" + url + "]" + urlName + "[/url]";
- }
- }
- }
- }
-
- if(get('ubbc_buttons','id')){
- get('ubbc_buttons','id').getElementsByTagName("a")[8].setAttribute("onclick","urlPrompt()");
- }
- else if(get('quick_reply_ubbc','id')){
- get('quick_reply_ubbc','id').getElementsByTagName("a")[8].setAttribute("onclick","urlPrompt()");
- }
- //-->
- </script>
Enjoy. | |
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: Prompting For Hyperlinks Please (26th Mar 08 at 5:21am UTC) | | Thank you very much Marc , it works fine . | |
 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: Prompting For Hyperlinks Please (26th Mar 08 at 7:25am UTC) | | No worries. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Prompting For Hyperlinks Please (26th Mar 08 at 10:28am UTC) | | I would have just used the ubbc_add() function! | |
|