Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

bbcode javascript html textarea

<script type="text/javascript"> 
<!-- 
    function formatText (tag) { 
        var selectedText = document.selection.createRange().text; 

        if (selectedText != "") { 
            var newText = "[" + tag + "]" + selectedText + "[/" + tag + "]"; 
            document.selection.createRange().text = newText; 
        } 
    } 
//--> 
</script> 

<form name="my_form"> 
    <textarea name="my_textarea"></textarea><br /> 
    <input type="button" value="bold" onclick="formatText ('b');" /> 
    <input type="button" value="italic" onclick="formatText ('i');" /> 
    <input type="button" value="underline" onclick="formatText ('u');" /> 
</form>
Comment

bbcode javascript html textarea

<script type="text/javascript"> 
<!-- 
    function formatText (tag) { 
        var selectedText = document.selection.createRange().text; 

        if (selectedText != "") { 
            var newText = "[" + tag + "]" + selectedText + "[/" + tag + "]"; 
            document.selection.createRange().text = newText; 
        } 
    } 
//--> 
</script> 

<form name="my_form"> 
    <textarea name="my_textarea"></textarea><br /> 
    <input type="button" value="bold" onclick="formatText ('b');" /> 
    <input type="button" value="italic" onclick="formatText ('i');" /> 
    <input type="button" value="underline" onclick="formatText ('u');" /> 
</form>
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript convert array of objects to array of uri 
Javascript :: Mongoose multi update req.body 
Javascript :: set up background process in express app 
Javascript :: how to use getBackgroundPage 
Javascript :: gatsby underline link if page is active 
Javascript :: how to run multple port node 
Javascript :: send variable data from node js to front end javascript 
Javascript :: as;dlkfja;slkdjf;lakjsdfjhatl;kndflkjatojn ;kojt;oknbsd;lk 0p9tjdn,mvnklizchflkjt52897sd984235jsdfvhuaiwetr kjhfdoiu twhfoah a 
Javascript :: password textInput not working on android 
Javascript :: deconstruction javascript check if exist attrib 
Javascript :: using shortid in react lists 
Javascript :: how to new tab disable after hit enter in javascript 
Javascript :: parse ipv6 address using json 
Javascript :: angular.json to war 
Javascript :: what is the difference between explicit parameter and rest parameter javascript 
Javascript :: useful javascript code snippet for console 
Javascript :: noblox.getinfo 
Javascript :: angular browser detector 
Javascript :: dojo create app 
Javascript :: js code to run hello world 
Javascript :: puzzle interview questions javascript 
Javascript :: why my style not come to angular 11 
Javascript :: aba translate js 
Javascript :: JavaScript Operator Precedence Values 
Javascript :: how to add some thing to url by js 
Javascript :: block __element 
Javascript :: javascript kommentare 
Javascript :: react native kesatore 
Javascript :: different getters js 
Javascript :: what is export default in view js 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =