0 try this way, first of get all textbox values.
- <Div id="Container">
- <input type="Submit" id="AddTextBox" value="Add">
- -------Here are my daynamic textbox
- <input type="text" value='1' id="first" class="daynamic">
- <input type="text" value='2' id="second" class="daynamic">
- <input type="text" value='3' id="thrid" class="daynamic">
- </Div>
- var str="";
- var count=$('.daynamic');
- for (i = 0; i < count.length ; i++) {
- var temp=count.eq(i)
-
- $('#Container input[type=text]').each(function (id){
- alert('va');
-
-
- });
- }