Nested multifield loop
I have a nested multified and I need to loop through the inner multifield items also. For outer multifield I was using :
$(".coral3-Multifield-item").each(function( index ) {//body}
I have a nested multified and I need to loop through the inner multifield items also. For outer multifield I was using :
$(".coral3-Multifield-item").each(function( index ) {//body}
Target the parent/root multifiled using multifiled name like below.
$("[data-granite-coral-multifield-name='./multifield-name'] .coral3-Multifield-item").each(function( index ) {
//Parent multifield items loop
$(this).find(".coral3-Multifield-item").each(function( index ) {
//Child multifiled items loop
)};
)};Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.