The short version
Interviewing while you hold a full-time job is normal, legal in most places, and usually puts you in a stronger position than an unemployed candidate. The whole game is logistics and discretion: protect your current job, keep your search off your employer's systems, and treat your limited daytime hours as a budget you spend deliberately rather than a resource you leak.
TL;DR: Never job-search on a work laptop, work email, or work network. Book screens into early mornings and lunch, and save annual leave for onsite loops. Give recruiters two or three fixed windows a week instead of open availability. Do not tell your manager until you have signed an offer, unless your contract or a background check forces the timing. Know your notice period and any exclusivity clause before you accept anything. Being employed is an advantage, so negotiate from it rather than apologising for your calendar.
Why staying employed works in your favour
The instinct to rush, or to feel guilty about splitting your attention, gets the psychology backwards. Recruiters actively prefer people who already have a job. Roughly 70 percent of the workforce is passive talent, meaning employed and not actively looking, with only about 30 percent actively job seeking at any moment (Apollo Technical). That imbalance is why so much sourcing effort chases the people who are hardest to reach, and it is why "I am happy where I am, but I would move for the right role" is a stronger opening than desperation.
Practically, this means you set terms. You do not have to accept a same-week onsite. You do not have to take the first offer to end a gap on your resume. You can walk away from a process that treats your time badly, because you still have income. Guard that position instead of surrendering it by acting rushed.
The discretion rules that keep your current job safe
The fastest way to turn a quiet search into a crisis is to conduct it on your employer's property. Assume anything on a company device or account is visible to your employer, because it usually is. Keep a clean separation.
| Do this | Not this |
|---|---|
| Use a personal laptop, phone, and email for everything | Emailing recruiters from your work address |
| Job-search on your home or mobile network | Uploading your resume over office wifi or a work VPN |
| Set your LinkedIn to "open to work, recruiters only" | Broadcasting "open to work" to your whole network |
| Take calls off-site, in your car, or from home | Taking a screen in an empty meeting room booked under a fake title |
| Store your resume in a personal cloud account | Saving the file to a work-synced drive |
Two mistakes cause most leaks. The first is a shared calendar. If your work calendar is visible to colleagues, a block titled "Dentist" every Tuesday at 10am starts to look like a pattern, and a video call showing another company's branding is worse. Keep interview holds vague, private, and irregular. The second is a reference request that reaches your current manager before you are ready. Line up references who are not at your current employer, and tell every recruiter in writing not to contact your present workplace until you say so. If you want to understand exactly what a reference check surfaces and when it happens, read our guide on what to expect from reference checks before you hand over any names.
Discretion is not dishonesty. You are not obliged to tell your employer you are interviewing, and choosing not to is the norm, not a betrayal.
Finding interview slots without lying or vanishing
You have three kinds of time to spend: free slots that cost no leave (early mornings before work, lunch breaks, evenings), half-days of annual leave, and full days. Spend them in that order. A recruiter screen or a 45-minute call fits a lunch break or a pre-9am slot. Save your scarce leave for the onsite loop or the final panel, which are the stages that actually decide the offer.
The trap is agreeing to everything and then quietly draining your leave balance. Before you say yes to a schedule, work out whether your commitments actually fit your budget. Here is a small calculator that counts free slots first and only falls back to leave when the free slots run out.
// Count how much annual leave a set of interview commitments will actually cost,
// spending free early/lunch slots first and leave only when they run out.
function leaveCost(budget) {
const dayCost = { onsiteHalf: 0.5, onsiteFull: 1 };
let freeUsed = 0;
let leaveUsed = 0;
for (const c of budget.commitments) {
if (c.type === "screen") {
// a 30 to 45 minute call fits a lunch or pre-work slot if one is left
if (freeUsed < budget.freeSlots) freeUsed++;
else leaveUsed += 0.5; // no free slot left, take a half day
} else if (c.type === "takeHome") {
// done on personal time in the evening, no work-hours cost
} else {
leaveUsed += dayCost[c.type] ?? 1;
}
}
return {
leaveUsed,
leaveRemaining: budget.leaveDays - leaveUsed,
fitsBudget: leaveUsed <= budget.leaveDays,
};
}
leaveCost({
leaveDays: 2,
freeSlots: 3,
commitments: [
{ type: "screen" }, // free slot 1
{ type: "screen" }, // free slot 2
{ type: "onsiteHalf" }, // 0.5 leave
{ type: "onsiteFull" }, // 1.0 leave
],
});
// -> { leaveUsed: 1.5, leaveRemaining: 0.5, fitsBudget: true }Run it against your real pipeline before you commit. If three processes all reach onsite in the same fortnight, the calculator tells you plainly that your two leave days will not stretch, and you can ask one company to move a week rather than call in sick and hope.
A real three-week plan
Here is how one mid-level engineer, call her Sam, ran three live processes around a strict 9-to-5 without her manager noticing and without burning a single sick day dishonestly. She had two flexible early mornings a week, a genuine lunch hour, and four days of annual leave banked.
| Week | Free slots used | Leave used | What happened |
|---|---|---|---|
| 1 | Two lunch screens (Company A, Company B) | 0 | Both recruiter calls taken from her car in the car park; take-home for A started Thursday evening |
| 2 | One 8am technical screen (Company A), one lunch screen (Company C) | 0 | Company A technical call done from home before logging in; told her team she had a "morning appointment" once, kept the reason private |
| 3 | None | 1.5 days | Company A full onsite loop (1 day of leave), Company B half-day panel (0.5 day); Company C paused at her request to the following week |
The plan worked because Sam front-loaded the cheap stages into free time and refused to let the expensive stages collide. When Company C wanted an onsite in week 3 as well, she did not scramble. She replied that her earliest availability was the following Tuesday, and the recruiter accommodated it without a second thought, because a candidate who is calmly busy reads as in demand.
Her one near-miss was a calendar hold titled "Interview - Company A" that briefly synced to her work account before she caught it. She deleted it and moved every future hold to a personal calendar with a neutral label. Nothing came of it, but it is the exact kind of small leak that ends searches, so treat your calendar as the highest-risk surface you own.
The contractual and legal lines, by region
Interviewing elsewhere is legal almost everywhere. What varies is the clause that bites when you move: your notice period, whether your contract forbids outside work, and whether a non-compete can actually be enforced. careerprep readers are worldwide, so check your own contract and local law, but here is the shape of it in three common jurisdictions.
| Region | Is interviewing while employed legal? | The clause that actually matters |
|---|---|---|
| United States | Yes, employment is generally at-will | Non-competes now fall mostly to state law after the federal rule was abandoned; some states (for example California) largely ban them, others enforce reasonable ones |
| United Kingdom | Yes | Your notice period and possible garden leave; confidentiality and exclusivity terms |
| India | Yes | Exclusivity or "no dual employment" clauses, which courts uphold during the term of employment |
In the United States, the Federal Trade Commission dropped its attempt to ban most non-competes in September 2025 and now polices them case by case rather than by a blanket rule, which pushes enforceability back to individual states (Crowell & Moring). So whether your current employer can restrict where you go next depends heavily on which state's law governs your contract.
In the United Kingdom, the constraint is usually timing rather than permission. If you have worked somewhere for at least a month you must give a minimum of one week's notice, and your contract can require more, often one to three months for senior roles (Acas). Your employer may also place you on garden leave, keeping you employed and paid but away from work and its systems during that notice (Acas). None of that stops you interviewing now, but it shapes how quickly you can actually start.
In India, interviewing is fine, but many contracts carry an exclusivity clause, and the courts treat those seriously. Contractual terms restricting dual employment are enforceable, and non-compete clauses that operate during the term of employment have been upheld repeatedly (Cyril Amarchand Mangaldas). The practical read: interviewing on your own time is not dual employment, but do not start a second paid role that overlaps with your current one before you have resigned.
Whatever your region, read your own contract for the notice period, any exclusivity term, and any non-compete before you sign an offer, so the terms of your exit are never a surprise.
Telling your manager: when, and how much
The default is simple. You say nothing until you have a signed, written offer that you intend to accept. Telling a manager you are "exploring options" before that point hands them power over your timeline and your projects, and it can cost you in ways a still-open search cannot recover from.
There are only a few reasons to break that default early. A background or reference check that names your current employer forces the conversation. A close, trusted manager who you know will react well and who could counter meaningfully is a judgment call, not a rule. Otherwise, wait.
When it is time, keep it short, grateful, and final. Compare the two:
Weak, leaves room to be talked in circles:
"I have kind of been looking around a bit and I might have something, but I am not totally sure yet, so I wanted to give you a heads up in case, but nothing is confirmed."
Strong, respectful and clear:
"I have accepted an offer for a role that moves my career in a direction I have been aiming at, and my last day will be the [date] after my notice period. I have really valued working with you, and I want to make the handover as smooth as possible."
The strong version states a decision, gives the date, and offers a clean handover. It does not invite a negotiation you have already finished having with yourself. If a counteroffer comes, treat it as information about how you were valued all along, not as a reason to unpick a decision you made for good reasons. For the money side of that decision, our guides on researching salary ranges before an interview and negotiating tech compensation cover how to price the move so a counteroffer rarely changes the maths.
From offer to resignation without burning the bridge
Once you accept, sequence the exit deliberately. Get the offer and start date in writing first. Then resign in person or on a call, followed by a short written note, and work your notice properly. Do not overshare about where you are going or why, and do not use your final weeks to vent. The industry is small, and today's manager is tomorrow's reference or, sometimes, tomorrow's colleague at the new place.
Keep your current work at its usual standard right up to the last day. A strong finish is the version of you that people remember, and it is cheap insurance for a reference you may need years from now.
FAQ
Is it legal to interview for other jobs while employed? In almost every jurisdiction, yes. Interviewing is not the same as working two jobs at once. What your contract can restrict is outside paid work during employment and, in some regions, where you go next through a non-compete. Read your contract for exclusivity and notice terms, and check local law before you accept an offer.
Can I get fired for interviewing elsewhere? In an at-will jurisdiction like most of the United States, an employer can act on it if they find out, which is the practical reason to keep your search off their systems and quiet. In countries with stronger dismissal protections, interviewing alone is not grounds for dismissal, but breaching an exclusivity or confidentiality clause can be.
Should I tell my manager I am job hunting? Not until you have a signed offer you intend to accept, in nearly all cases. Telling them earlier gives away control of your timeline with little upside. The exceptions are a reference check that names them or a manager you genuinely trust to react constructively.
How do I take time off for interviews without lying? Use free slots first: early mornings, lunch breaks, and evenings cover screens and take-homes. Book annual leave for onsite loops rather than calling in sick. If you must give a reason, "a personal appointment" is honest and complete. You are not required to explain further.
What do I say when a recruiter asks why I am leaving a job I already have? Frame it forward, not away. Name the specific thing the new role offers that yours does not, such as a domain, a scale of problem, or a step up in scope. Avoid criticising your current employer, which reads as a risk regardless of how fair the complaint is.
How do I keep my LinkedIn search private? Use the "open to work" setting restricted to recruiters only rather than the public badge, and be aware that a sudden burst of profile updates can signal a search to connected colleagues. Make changes gradually.
What if my current employer offers a counteroffer? Weigh it as data about your value, then usually decline. Counteroffers often address pay but not the reasons you started looking, and accepting one can mark you internally as a flight risk. If money was the only issue, you now know your real market rate for the next conversation.
Where to go next
- Setting up for a remote interview so a screen taken from home during a work break looks effortless.
- Technical phone screen prep for the lunch-hour call that opens most processes.
- What to expect from reference checks so a reference request never reaches your current manager before you are ready.
- Negotiating tech compensation to price the move so any counteroffer is easy to answer.