[jQuery] How to match this or that?

[jQuery] How to match this or that?


I have some code like this:
$("input[type='text'][name='start_time']").datepicker();
$("input[type='text'][name='stop_time']").datepicker();
In other words, I'm adding a datepicker to both the start_time text
box and the stop_time text box.
Is there a way to provide two selectors and match both at once?
I need to use the names because there are a lot of other text fields I
don't want to alter.
I know I can add a class to them both and then select that class, but
I don't want to.