Category: JavaScript
How to find list of input fields values with similar ID in Javascript
Sometimes we may need to find the values of different IDs of same type of elements, like input fields for any web page who have similar patterns in their IDs. Look at the below scenario The above line will create ids like “order_inv_id_1”, “order_inv_id_2”, “order_inv_id_3” and so on. So, how to get values from this…