Skip to content

Instantly share code, notes, and snippets.

@allyraza
Last active December 11, 2015 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allyraza/4520267 to your computer and use it in GitHub Desktop.
Save allyraza/4520267 to your computer and use it in GitHub Desktop.
<?php echo CHtml::link("add new item", "#", array('id'=>'add-new-item')); ?>
&nbsp;
<?php echo CHtml::link("remove item", "#", array('id'=>'remove-item')); ?>
<?php Yii::app()->clientScript->registerCoreScript('jquery'); ?>
<script type="text/javascript">
$('document').ready(function(){
21$('a#add-new-item').click(function(){
var str='';
str += '<div><?php echo CHtml::textField("FieldName"); ?></div>';
$('#form').append(str);
});
$('a#remove-item').click(function(){
$('#form > div').last().remove();
});
});
</script>
<form id="form">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment