Convert space to URL encode : Document : Development : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Development   » [  Document  ]   
 



Convert space to URL encode

Please note that some example is only working under IE or Firefox.

<html>
<head><title>Convert space to URL encode</title>
<script>
    function ConvertText(){

    var textvalue = document.formtest.textest.value;

    if (textvalue.indexOf(" ")){
        var LinkText = textvalue.split(" ");
    }

    if (document.layers) { 
        document.layers.converted.document.write(textvalue)
        document.layers.converted.document.close()
    }else if (document.all) { 
        converted.innerHTML = LinkText[0"%20" + LinkText[1]
    
}
</script>


</head>

<body>

Enter two words with a space between them:
<form name="formtest">
  <input name="textest">

  <input type="button" value="Convert" onclick="ConvertText()">
</form>

<span id=converted style="position:absolute;"></span>

</body>
</html>
           
       
Related examples in the same category
1.  Output HTML in JavaScript
2.  Display info in a new page
3.  Recursively reverse all nodes beneath Node n, and reverse Text nodes
4.  Reverse the order of the children of Node (document)
5.  Open a new document and add some text
6.  Get element by name: getElementsByName()
7.  Get a specified element using getElementById()
8.  Title of a document
9.  Referrer of a document (URL of the document)
10.  Hide Email Address
11.  document last Modified Property in Another Format
12.  Checking document referrer
13.  Make button (control) visible or invisible
14.  Opening a New URL
15.   HTML Page with Immediate Script Statements
16.  Using document.write() on the Current Window
17.  Using document.write() on Another Window
18.  Methods and Properties of the Document Object
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.