Sorry if this question is dazzlingly easy to answer, but I'm a little new to jQuery and I have a limited time.
I am looking for a selector for text field elements that have this format:
id = "FixedName_#"
"FixedName" will always be "FixedName", but I only want to find elements where # is positive. Therefore, I would like to find "FixedName_1" and "FixedName_2", but skip "FixedName_-1" and "FixedName_-2".
Thank!
The update
ended up with something like this (changed my actual code to display here, so I'm not sure if this works, as shown):
$("input[id*='FixedName_']").each(function() {
if ($(this).attr("id").charAt(10) == "-") {
} else{
}
});