12-09-2007, 01:55 AM
|
#3 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
As bdm said.
javascript Code:
var iCount = 0; // Set to 1 if there is already a span by default.
function addChoice() { if(iCount >= 10) { return; }
new Insertion.After('choice', '<span style="display: block; padding-bottom: 5px"><label for="poll_choice">Option</label><input name="poll_choice[]" type="text" size="25" /></span>'); iCount++; }
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|