I am trying to find all the input values of a url, but I need to exclude a couple. How do you exclude two or more id's in the list? Similar to this:
Elements e = doc.select("input[id != fm-login-id]");
but I want to exclude two id's, so I'm looking for something like this:
Elements e = doc.select("input[id != fm-login-id && id fm-login-password]");
Does anyone know the proper way to do this? Thanks