|
||||||||||||||||||
Add Forum to Favorites | Send Topic To a Friend | View Forum FAQ | Track this topic |
Last Thread Next Thread ![]() |
| Javascript - Add HTML tags around selection |
|
![]() InsaneBoarder234 Member since: 2/11/2005 From: Manchester, United Kingdom |
||||
|
|
||||
| I'm having difficulty finding suitable pages about this on google. Basically I'm writing a simple editor and I want to add a few buttons that will add tags around the current selection for formatting. So far I have this piece of javascript to apply bold to the selected piece of text.
function ApplyBold()
{
theSelection = document.selection.createRange().text;
if(theSelection)
{
document.selection.createRange().text = "<strong>" + theSelection + "</strong>";
document.selection.anchorOffset = selStart;
}
}
I have a few questions.. (1) How can I only affect the selection if it is within the textarea named 'text' on the form named 'editor'? (2) If there is no selection, or the 'text' textarea doesn't currently have keyboard focus, how can I detect this and use it to simply add "" into the textarea at the location of the cursor? (i.e. if I click at the start of the textarea, then click in another text box, then call ApplyBold() via a button, ApplyBold will insert the strong tag at the start of the 'text' textarea). Thanks! Progress is born from the opportunity to make mistakes. NickBloor.co.uk |
||||
|
||||
![]() konForce Member since: 12/11/2001 From: Lena, IL, United States |
||||
|
|
||||
Try this:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Untitled</title> <script type="text/javascript"> function applyTag(obj, tag) { wrapText(obj, '<'+tag+'>', '</'+tag+'>'); }; function wrapText(obj, beginTag, endTag) { if(typeof obj.selectionStart == 'number') { // Mozilla, Opera, and other browsers var start = obj.selectionStart; var end = obj.selectionEnd; obj.value = obj.value.substring(0, start) + beginTag + obj.value.substring(start, end) + endTag + obj.value.substring(end, obj.value.length); } else if(document.selection) { // Internet Explorer // make sure it's the textarea's selection obj.focus(); var range = document.selection.createRange(); if(range.parentElement() != obj) return false; if(typeof range.text == 'string') document.selection.createRange().text = beginTag + range.text + endTag; } else obj.value += text; }; </script> </head> <body> <p>Blah blah blah.</p> <textarea id="ta" rows="10" cols="50"></textarea> <br /><br /> <input type="button" value="Bold" onclick="applyTag(document.getElementById('ta'), 'b')" /> <input type="button" value="Italics" onclick="applyTag(document.getElementById('ta'), 'i')" /> </body> </html> |
||||
|
||||
![]() InsaneBoarder234 Member since: 2/11/2005 From: Manchester, United Kingdom |
||||
|
|
||||
| That works great, thanks! Progress is born from the opportunity to make mistakes. NickBloor.co.uk |
||||
|
||||
All times are ET (US)![]() |
Last Thread Next Thread ![]() |
|