Hi all,
In my form, I would like to identify all element with a specific classname (start with and contain).
E.g : Start with "customer_" and contains "m"
Element
<e class="form customer_emeraude" />
<e class="form customer_saphir" />
Jquery => Hide class "customer_*m*"
return => <e class="form customer_saphir" />
I tried :
Field27 = "m"
$("[class*="+$("#Field27").val()+"]").show();
But it return me all the element because of the classname "form".
Next, I tried :
$("[class^=customer_]:contains("+$("#Field27").val()+")").show();
But unsuccess
Do you have any idea ?
Thanks in advance.
Regards