How can count all input elements with has id which starting with (myInputElem) inside dom using jquery. So there will be dynamic number of input elements like
<input id="myInputElem1" type="text" value="Eleme1">
<input id="myInputElem2" type="text" value="Eleme2">
..
<input id="myInputElemx" type="text" value="Elemex">
So I just need to count them.