Jquery find by two attr values -


I have attributes with table cells with the data-position-x and data-status - With y values, I get a fixed cell by x and y values. Is it possible in jQuery? At the moment I can not understand how I can do two predicates to build $ ('[data-position-x = "0"]');

That's what you are searching for:

 < Code> $ ('[[data-position-x = "0"] [data-position-y = "0"]');    

Comments