Convert space to URL encode : Document « Development « JavaScript DHTML






Convert space to URL encode

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