Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
FotografistRobin #1
Need help with add text to url function
Could anyone help me to get this working? Im kinda of noob and im trying to get
a form to add [url]http://www[/url]. in front of a text submition form and .com as suffix
to the text, my code looks like this:
<form name="openlocation">
<input type="text" name="href" value="">
<input type="button" onClick="location.href=document.openlocation.href. value;;
" value="Go To" href="http://www.<input type='button' value='Go To'
onClick='location.href=document.openlocation.href. value;; '>.com">
</form>
FotografistRobin Guest
-
URL Function in Rich Text Editor
I have grabbed Philippe Maegerman's and am trying to adjust it to allow for the user to specify a url and apply it to the input text (like on the... -
3d text function is not working
Hi, I am trying to use 3d text function. But it does not work. instead of 3d text, some sort of boxes appear. Any help? Thanks -
Problem with adding text to emails using the date function
Hi, using the folling line fo code i am trying to add some text to an email: $subject .= "\nBooking Commences: ".date("jS F Y \a\t H\:i",... -
calling a function from text.
simply, I am making a 3d game. You have a weapon. It shoots stuff, which reacts differently. I want a system where I can call a function based on... -
Text Replace function
Hi - I'm using the replace function to hilite search words in text which is returned. However, as the text which is being searched also includes... -
Randy Edmunds #2
Re: Need help with add text to url function
Try this:
<form name="openlocation">
<input type="text" name="href" value="">
<input type="button" onClick="location.href = 'http://www.' +
document.openlocation.href.value + '.com';">
</form>
HTH,
Randy
FotografistRobin wrote:> Could anyone help me to get this working? Im kinda of noob and im trying to get
> a form to add [url]http://www[/url]. in front of a text submition form and .com as suffix
> to the text, my code looks like this:
>
> <form name="openlocation">
> <input type="text" name="href" value="">
> <input type="button" onClick="location.href=document.openlocation.href. value;;
> " value="Go To" href="http://www.<input type='button' value='Go To'
> onClick='location.href=document.openlocation.href. value;; '>.com">
> </form>
>Randy Edmunds Guest



Reply With Quote

