Guest User

Untitled

a guest
Mar 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. var inv = 1;
  2. $("#faPlus0").click(function () {
  3. if (inv < 10) {
  4. $(".bubbleBox").append("<span id='input-append' class='badge badge-secondary'><input type='text' name='invo" + inv + "'id='bubble' placeholder='Navn' onkeypress='this.style.width = ((this.value.length + 2) * 9) + 'px';'></span>");
  5. inv++;
  6. };
  7. });
  8.  
  9. <span id="input-append" class="badge badge-secondary"><input type="text" name="invo0" id="bubble" placeholder="Navn" onkeypress="this.style.width = ((this.value.length + 2) * 9) + 'px';"></span>
  10.  
  11. .append("... onkeypress="this.style.width = ((this.value.length + 2) * 9) + 'px';"> ...
Add Comment
Please, Sign In to add comment