Reputation: 9267
I have this :
<div class="glass">
<input />
<input />
<select>
<option>aaaa</option>
</select>
</div>
<input />
What i want is to remove div with glass class from tabing that is cloned, so when i do tab it skip that div. Any suggestion ?
Im doing clone element :
this.background = jQuery(this.content.nativeElement).clone()
.addClass('glass').removeAttr('tabindex');
Upvotes: 0
Views: 1509