I have custom attribute tag in my html without id as the number can vary for them
<input type="hidden" cus_control="offer_1" value="123456">
<input type="hidden" cus_control="offer_2" value="1UYREST">
Now I want to read the value of offer_1 and offer_2 which is 123456 and 1UYREST respectively using jquery or javascript. How will I achieve this as I don't have id for them?