How would I perform the following in jQuery?
var elmOperator = document.getElementById(elm.id.replace('Include', 'Operator'));
The ID that is being manipulated would look something like Criteria[0].Include. I am trying to create a variable for a related ID which is Criteria[0].Operator.
Assuming elm is a jQuery object, not a DOM object, you could do this:
If it is a DOM object, you can do this (which would be a tiny bit faster):
The bigger question is why you’d want to do this. If you don’t know something as basic as the jQuery selectors and
attr(), is your page using jQuery at all anywhere?