Flash Games

 FAQ   Search   Members   Groups   User Control Panel      Login 

It is currently Thu Jan 08, 2009 3:20 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: quick help
PostPosted: Mon Jun 30, 2008 2:44 pm 
Offline

Joined: Thu May 22, 2008 8:19 am
Posts: 5
Hi

I need a code in Ajax.
Suppose that there is a one text filed, by clicking on the button it must add one textfield too, then one more too and so on, by its own name.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 01, 2008 1:44 am 
Offline
500+ Club
User avatar

Joined: Wed Feb 27, 2008 6:14 am
Posts: 778
Location: Cebu City Philippines
Show us your attempt. Oh, and why AJAX? JS alone can do this for you ;)

_________________
Please don't PM me, let's keep the discussion on the public board.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 01, 2008 7:01 am 
Offline

Joined: Mon Jun 30, 2008 7:31 pm
Posts: 3
Hi,

The following is code create a textarea dynamically(when u click the add button). what here i did is just duplicate the textarea and change its id.

<script>

var serial_number = 0;

function addTextArea()
{
container = document.getElementById("container");
div_ele = document.getElementById("test");
text_area = document.getElementById("sample");
div_ele.id = div_ele.id + "-" + serial_number;
text_area.id = text_area.id + "-" + serial_number;
div_ele.style.display = "";
container.appendChild(div_ele.cloneNode(true));
div_ele.id = "test";
text_area.id = "sample";
div_ele.style.display = "none";
serial_number++;
}

</script>

<div id = "container"> </div>
<div id = "test" style="display:none"> <textarea id = "sample"> </textarea> </div>
<input type = "button" value = "add" onClick = "addTextArea()">

Hope this meets your requirement. :lol:

~vishnu~


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 19 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group - Flash Games - TNX Invitation Code - TNX Review

Welcome to DEVPPL.com
You are not logged in, which means that you can't post in the forums.
Click here to Register

If you are a current member here on DEVPPL, please login below:

User:
Pass:
Log me on automatically each visit: