Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a .php page where i am using to create dynamic rows using jQuery. I also use this library "sisyphus.js" and "sisyphus.min.js" and "jquery-1.7.min.js". I am not able to preserve my dynamically rows in my form.

Here i am adding dynamic rows in this form.... i set the timer 5 seconds. after 10 or more seconds if i refresh page..it is loosing all the dynamic rows which i added.

Like This:

<script type="text/javascript" src="jquery-1.7.min.js"></script>
<script src="sisyphus.js" language="javascript"></script>

<script language="javascript" >
    jQuery('#form1').sisyphus();
    jQuery('form').sisyphus({timeout: 5});
</script>

<script type="text/javascript">
    $(document).ready(function(){       

        $('.del').live('click',function(){
            $(this).parent().parent().remove();
        });

        $('.add').live('click',function(){
            $(this).val('Delete');
            $(this).attr('class','del');
            var appendTxt = "<tr><td><select  name='ptype[]' ><option value='1' >ONE</option><option value='2' >TWO</option></select></td><td><select name='product[]' ><option value='3' >ONE333</option><option value='4' >TWO444</option></select></td><td><input type='text' name='dsc[]' /></td><td><input type='text' name='qty[]' /></td></td><td><input type='button' class='add' value='Add More' /></td></tr>";
            $("tr:last").after(appendTxt);          
        });        
    });
</script>

<form name='form1' id='form1' action='' >
<table id='options-table'>
  <tr>
    <td>Type</td>
    <td>Product</td>
    <td>Desc</td>
    <td>Qty</td>                        
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><select  name='ptype[]' >
        <option value='1' >ONE</option>
        <option value='2' >TWO</option>
      </select></td>
    <td><select name='product[]' >
        <option value='3' >ONE333</option>
        <option value='4' >TWO444</option>
      </select></td>
    <td><input type='text'   name='dsc[]' /></td>
    <td><input type='text'   name='qty[]' /></td>          
    <td><input type='button' class='add' value='Add More' /></td>
  </tr>  
  </tr>
</table>
</form>
share|improve this question
with reference to above example I have created the simple form having the 2 Textbox,1 textarea,1 dropdown.Then "sisyphus.js" is working fine. – user1353339 Apr 27 '12 at 9:54
the document is bound to loss all the new rows because these are not the permanent part of your php file – raheel shan Apr 27 '12 at 13:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.