Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <script id="templatehidden">
  2. <?php get_template_part( 'fragments/calculator', 'row-sa' ); ?>
  3. </script>
  4.  
  5. <div class="form-row pricingrow select-multiple">
  6. <div class="form-controls">
  7. <img class="remove-field-sa" style="float: left; margin-right: 30px;" src="http://45.32.89.214/wp-content/uploads/2016/04/minus.png">
  8. <i style="margin-left: 50px;" class="cardinal"></i>
  9. <select name="field-followers[]" class="select followerselect">
  10. <?php foreach ( $options as $option ) : ?>
  11. <option value="<?php echo $option[ 'value' ] ?>"><?php echo $option[ 'label' ] ?></option>
  12. <?php endforeach; ?>
  13. </select>
  14. <b class="fa fa-caret-down" aria-hidden="true" style="color: #747474";></b>
  15. <span class="acctprice"></span>
  16. </div><!-- /.form-controls -->
  17.  
  18. $('.remove-field-sa').click(function () {
  19. $(this).closest('.form-row').remove();
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement