Friday, April 28, 2006

alexking.org: Blog > Inserting at the cursor using JavaScript

alexking.org: Blog > Inserting at the cursor using JavaScript

Ever needed to insert text at the cursor location in a textarea form field element. Here's some code that lets you do just that!

Labels: , ,

Thursday, April 27, 2006

Introduction To Regular Expressions

Introduction To Regular Expressions

There's an appendix at the bottom of this page which shows some key regular expression elements.

How to dynamically update text without refreshing page? - CodingForums.com

How to dynamically update text without refreshing page? - CodingForums.com

Check out the post by glenngv.

The main point is this:

you can use a
tag instead of textbox.
change its value by:

document.getElementById("IDofDiv").innerHTML="some text here";