Why is this field displayed in IE?
I look, but did not find another case.
I am using a hidden attribute and it is still showing ...
<input hidden="yes" value="<?php echo $sssssssss; ?>" name="ssssssssasas"></input>
I would try replacing hidden="yes" with type="hidden" .
hidden="yes"
type="hidden"
<input type="hidden" value="..." name="..."></input>
Try this way
there is another choice and you can use this.
<div hidden> value </div> // this works in IE11
but you can also try,
display:none; // set this for the variable you want to hide and you can access its value
You can use this:
<div hidden="hidden"> value </div> // this works in IE7+
CSS
[hidden] { display: none; }