Forum: JavaScript / DHTML / AJAX Sep 20th, 2006 |
| Replies: 6 Views: 2,868 I strongly disagree, and in fact so does Daniweb's official rules. Communication is about conveying "the message" as clearly as possible. Here, that means writing your posts in conventional, standard... |
Forum: JavaScript / DHTML / AJAX Aug 30th, 2006 |
| Replies: 4 Views: 9,344 Try "borderLeft" instead. One of the unfortunate aspects of web development is that the CSS property may or may not have a corresponding JavaScript property, and they don't always map directly to... |
Forum: JavaScript / DHTML / AJAX Apr 8th, 2005 |
| Replies: 2 Views: 19,124 You need to empty the current selection range.
function addtb()
{
document.selection.empty();
document.getElementById("TextEditor").focus();
cmd = 'InsertInputText';
... |