Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[How-to] Edit Websites [JavaScript]
#2
There are way better ways to use this function, one is a rich text editing...
Here is a small rich text editor I wrote in 5mins.... You can take a look at it...

Code:
<html>
    <head>
        <title>RichText using contentEditable</title>
        
        <style type="text/css">
            #richTextBox {
                width:500px;
                height:200px;
                overflow:scroll;
                border:1px solid black;
                padding:5px;
            }
        </style>
        <script language="javascript" type="text/javascript">
            function rtbFormat(command, value) {
                document.getElementById("richTextBox").focus();
                document.execCommand(command, false, value);
            }
        </script>
    </head>
    
    <body>
        <input type="button" name="boldText" onclick="rtbFormat('Bold', '');" value="Bold" />
        <input type="button" name="fontName" onclick="rtbFormat('FontName', 'Georgia');" value="Font: Georgia" />
        <input type="button" name="fontSize" onclick="rtbFormat('FontSize', 22);" value="Font: 22" />
        <input type="button" name="textAlign" onclick="rtbFormat('JustifyCenter', '');" value="Center Text" />
        <div id="richTextBox" contenteditable></div>
    </body>
</html>

And here a little preview:
[Image: QCJOY.png]

It's just that the use of the function you're showing is simply pointless and not needed.
Reply


Messages In This Thread
RE: [How-to] Edit Websites [JavaScript] - by Gaijin - 12-23-2009, 12:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Need html/javascript help TalishHF 2 394 02-20-2012, 06:17 AM
Last Post: Crystal
  Your usernames [Other Websites] Laughynose 12 1,190 06-05-2011, 05:47 AM
Last Post: BlackChaos
  Motivation When Creating Websites groovybluedog 8 994 02-22-2011, 07:13 PM
Last Post: AceInfinity
  edit randomusername1234 7 552 02-03-2011, 12:16 PM
Last Post: randomusername1234
  unblocker websites? haphazard 3 1,497 01-25-2011, 03:28 PM
Last Post: Resistance

Forum Jump:


Users browsing this thread: 1 Guest(s)