Enter a list of words, and we'll search for them in the job title, or you can choose to search for them also within the job description.
Tips
Use specific words that would appear only in the jobs you're interested in.
To find an exact phrase, surround your search phrase with double quotes (" "). Example: "senior manager"
Use AND, OR, NOT, and () to combine search terms. Ex: Sales AND engineer finds only jobs that have both terms.
Sales OR engineer finds all jobs that have either.
(Sales AND Engineer) NOT Manager finds jobs that contain both "Sales" and "Engineer" but not "Manager".
Wildcards
Wildcards are characters that can replace letters to expand a search
Use asterisk (*) for unknown word endings. Ex: cert* finds certify, certification, certificate, etc.
Use question mark (?) for an unknown letter. Ex: Thomps?n finds Thompson, Thompsen, Thompsan, etc.
Use tilde (~) to find similar spellings. Ex: roam~ finds roam, roams, room, road, roads, etc.
Structure
<div>
<label for="keyword">Keywords</label>
<input type="text" name="keyword" id="keyword">
<input type="image" src="help.png" id="helpbtn" alt="Search keyword instructions">
</div>
<div role="dialog" aria-labelledby="dlgtitle" aria-expanded="false" tabindex="-1" id="helpdlg" style="display: none">
<div role="presentation">
<input type="image" src="close.gif" id="closebtn" alt="Close">
<h2 id="dlgtitle">How does keyword search work?</h2>
<p>
Enter a list of words, and we'll search for them in the job title, or you can
choose to search for them also within the job description.
</p>
<h3>Tips</h3>
<ul>
<li>Use specific words that would appear only in the jobs you're interested in.</li>
…
</ul>
<h3>Wildcards</h3>
<p>Wildcards are characters that can replace letters to expand a search</p>
<ul>
…
<li>Use tilde (~) to find similar spellings. Ex: roam~ finds roam, roams, room, road, roads, etc.</li>
</ul>
<input type="button" value="OK" id="okbtn">
</div>
</div>
Notes
The dialog has been made modal. If it isn't modal, keyboard users can interact with content that is positioned beneath the dialog.
Keyboard navigation is constrained to the dialog.
Pressing ESC closes the dialog.
In Internet Explorer with JAWS, application mode is enabled by default when using role="dialog", which means screen reader users cannot read the HTML content. To work around this, the content within the dialog has been placed in role="presentation"