CINXE.COM
Job Trends | Indeed.com
<html> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("http://web.archive.org/web"); __wm.wombat("http://www.indeed.com/jobtrends","20090806041106","http://web.archive.org/","web","/_static/", "1249531866"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>Job Trends | Indeed.com</title> <meta name="description" content="Research job trends based on Indeed's comprehensive index of over 50 million jobs a year."> <meta name="keywords" content="job trends job search graph time jobs most popular jobs research career employment"> <link rel="shortcut icon" href="/web/20090806041106im_/http://www.indeed.com/favicon.ico"> <link rel="canonical" href="/web/20090806041106/http://www.indeed.com/jobtrends"> <link href="/web/20090806041106cs_/http://www.indeed.com/s/0cf63e8/global.css" rel="stylesheet" type="text/css"> <style type="text/css"> td { font-size: 13px; font-family: Arial, Helvetica, sans-serif; } .sectionTitle { color: rgb(128, 128, 128); margin: 0; font-size: 13px; font-weight: bold; line-height: 19px; } .separator_top { height: auto; padding: 2px 2px 2px 14px; } label { font-weight: normal; } </style> <style type="text/css"> a.open { background: url(/web/20090806041106im_/http://www.indeed.com/images/arrow-down-blue.gif) left center no-repeat; padding-left: 15px; } a.closed { background: url(/web/20090806041106im_/http://www.indeed.com/images/arrow-right-blue.gif) left center no-repeat; padding-left: 15px; } #sample_searches { margin-left: 1.5em; margin-top: 0.5em; padding: 0; list-style-type: none; margin-left: 6px; } #sample_searches li { margin-bottom: 0.5em; } #share_this_link, #email_this_link { font-weight: bold; margin-left: 6px; white-space: nowrap; _height: 1%;} #email_this, #shareGraph { margin-bottom: 1.5em; } #sample_trends { border-top: 1px solid #ccc; } .sample_trends_title { background: #e8e8e8; padding: 3px 6px; color: #666; } #sidebar { width: 220px; } .ws_content { margin-top: 6px; border: 1px solid #ccc; background: #ebebeb; padding: 5px; } .ws_content textarea { width:100%; } #sidebar .ws_content textarea { _width:208px; } .ws_content .error_msg { margin: 0.5em 0pt 0.5em 20px; padding-left: 0pt; } .ws_content .error_msg li { color:#c00;} .ws_content p { margin-bottom: 0; } .ws_content .lineItem { margin-bottom: 6px; } #shareCode_bottom { margin-bottom: 1em; } #footer { margin-top: 1em; } h2 { margin-bottom: 1em; font-size: 16px } .example { color: #f60; } #jt_meta { padding:1.5em 1.5em 0.5em; margin-bottom: 2em; border-top: 1px solid #d8d8d8; border-bottom: 1px solid #d8d8d8; background: #ffc } #industry_trends sup { color: #f00; } #industry_trends { margin-top: 1em; } #industry_trends .heading { text-align: center; margin-bottom: 0 } </style> <script type="text/javascript" src="/web/20090806041106js_/http://www.indeed.com/s/c28aaab/global.js"></script> <script type="text/javascript"> function simpleToggle( label, target, actions ) { if ( target.style.display == 'none' ) { target.style.display = ''; label.className = 'open'; if ( actions && actions.onopen ) { actions.onopen(); } } else { target.style.display = 'none'; label.className = 'closed'; if ( actions && actions.onclose ) { actions.onclose(); } } } function getFormValuesAsObject(form) { var args = {}; for ( var i = 0; i < form.elements.length; i++ ) { input = form.elements[i]; if ( input.disabled ) { continue; } switch (input.type) { case 'text': case 'hidden': case 'password': case 'textarea': case 'submit': case 'file': args[input.name] = trim( input.value ); break; case 'select-one': args[input.name] = input.options[input.selectedIndex].value; break; case 'select-multiple': for ( var j = 0; j < input.options.length; j++ ) { if ( input.options[j].selected ) { args[input.name] = input.options[j].value; } } break; case 'radio': case 'checkbox': if ( input.checked ) { args[input.name] = input.value; } break; } } return args; } function trim( str ) { return str.replace( /^\s*/, '' ).replace( /\s*$/, ''); } function createQueryStringFromObj( args ) { encoded_args = []; for ( var arg in args ) { encoded_args[encoded_args.length] = urlencode( arg ) + '=' + urlencode( args[arg] ); } return '?' + encoded_args.join('&'); } function genericEmailForm( form, sts, rpc_base ) { var args = getFormValuesAsObject( form ); var sts = document.getElementById( sts ); if ( !sts ) { sts = document.createElement('div'); sts.id = sts; sts.className = 'email_job_sts'; form.parentNode.insertBefore( sts, form ); } function sendemail_success( msg ) { sts.style.display = ''; sts.innerHTML = '<p>Your email to <b>' + args.toEmail + '</b> has been sent! </p>'; form.style.display = 'none'; var again = document.createElement('a'); again.href = '#'; again.onclick = function () { sts.innerHTML = ''; form.style.display = ''; form.toEmail.value = args.toEmail; form.fromEmail.value = args.fromEmail; form.comments.value = ''; setTimeout( function( ) { form.toEmail.select(); }, 0 ); return false; } sts.firstChild.appendChild( again ); again.innerHTML = 'Send another email'; again.focus(); } function sendemail_errors( errors ) { var error_msg = ''; for ( error in errors ) { error_msg += '<li>' + errors[error] + '</li>'; } sts.style.display = ''; sts.innerHTML = '<ul class="error_msg">' + error_msg + '</ul>'; } sendRequest( rpc_base + createQueryStringFromObj( args ), form.method, function( response ) { if ( response.readyState != 4 || response.responseText == '' ) { return; } eval( response.responseText ); }); } </script> <script type="text/javascript"> undefined = void(0); var gaJsHost = "http://web.archive.org/web/20090806041106/http://www."; if ("https:" == document.location.protocol) gaJsHost = "http://web.archive.org/web/20090806041106/https://ssl."; document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker; if (typeof _gat != 'undefined') { pageTracker = _gat._getTracker("UA-90780-1"); pageTracker._trackPageview(); } </script> </head> <body> <script type="text/javascript"><!-- function addDest( link ) { if ( link.href.search( /[\&|\?]{1}dest=/ ) == -1 ) { // no dest on href, let's add one var delim = link.href.indexOf('?') == -1 ? '?' : '&'; // if no ? in url, use ? instead of & // pick the best encoding function available... var encoding_function = escape; if ( encodeURIComponent ) { encoding_function = encodeURIComponent; } else if ( urlencode ) { encoding_function = urlencode; } link.href += delim + 'dest=' + encoding_function( window.location ); } } // --> </script> <table id="user_nav"> <tr> <td id="user_actions"> <a href="/web/20090806041106/http://www.indeed.com/my/myjobs" rel="nofollow">my.indeed</a> - <a href="/web/20090806041106/http://www.indeed.com/my/login" onclick="addDest(this)" rel="nofollow">sign in</a> </td> </tr> </table> <style type="text/css"> #global_nav { width: auto; padding: 0; font-size: 13px; border-spacing: 0; border-collapse: collapse; margin-bottom: 6px; } #global_nav td { padding: 0; } #global_nav #branding { float: none; margin-right: 0; } #global_nav #local_nav { border-spacing: 0; border-collapse: collapse; padding: 0; } #global_nav #local_nav td { padding: 2px; white-space: nowrap; } #global_nav #local_nav .label { color: #000; display: block; font-weight: normal; margin-top: 2px; font-size: 12px; } #global_nav #local_nav .label b { font-weight: bold; color: #f60; margin-right: 3px; text-transform: lowercase; } #global_nav #product_nav { text-transform: lowercase; font-weight: bold; } #global_nav #product_nav a { font-weight: normal; } #global_nav #product_nav a, #global_nav #product_nav a:link, #global_nav #product_nav a:visited { color: #00c; } #global_nav #product_nav b, #global_nav #product_nav a { margin-right: 18px; font-size: 13px; line-height: 1; } #global_nav #product_nav #trends_product_link, #global_nav #product_nav #trends_product_link:link, #global_nav #product_nav #trends_product_link:visited { font-weight: bold; text-decoration: none; color: #000; } </style> <script type="text/javascript"> var urlencode = window.encodeURIComponent ? function ( str ) { return window.encodeURIComponent(str).replace(/%20/g,'+') } : function ( str ) { return escape(str).replace(/\+/g,'%2B').replace(/\//g,'%2F').replace(/%20/g,'+'); } </script> <table id="global_nav" cellpadding="0" cellspacing="0"> <tr> <td style="padding-right: 12px;"><a id="branding" href="/web/20090806041106/http://www.indeed.com/"><img src="/web/20090806041106im_/http://www.indeed.com/images/indeed.gif" alt="one search. all jobs. Indeed" width="175" height="72"></a></td> <td> <form name="trends_search_form" id="trends_search_form" action="/web/20090806041106/http://www.indeed.com/jobtrends" method="get"> <table id="local_nav" cellpadding="0" cellspacing="0"> <tr> <td id="product_nav" colspan="2"> <a href="/web/20090806041106/http://www.indeed.com/" title="Jobs" id="jobs_product_link">Jobs</a> <a href="/web/20090806041106/http://www.indeed.com/salary" title="Salary Search" id="salaries_product_link">Salaries</a> <a href="/web/20090806041106/http://www.indeed.com/jobtrends" title="Career Trends" id="trends_product_link">Trends</a> <a href="/web/20090806041106/http://www.indeed.com/forum" title="Employment Forums" id="forums_product_link">Forums</a> </td> </tr> <tr> <td><input id="trends_search_what_input" class="input_text" name="q" size="48" maxlength="512" value=""social networking"" alt="job title, keywords or company"><span class="label"><b>What:</b> job title, keywords or company</span></td> <td rowspan="2"><input class="input_submit" type="submit" value="Find Trends"> <input class="input_button" type="button" value="Find Jobs" onclick="window.location = '/jobs?q=' + urlencode( this.form.q.value ) + '&l=' + urlencode( this.form.l.value ); return false;"></td> </tr> </table> <input type="hidden" name="l" value=""> </form> <script type="text/javascript"> document.getElementById('jobs_product_link').onclick = function( e ) { var q = document.trends_search_form.q.value; if ( q ) { window.location = '/jobs?q=' + urlencode( q ) + '&l=' + urlencode( document.trends_search_form.l.value ); return false; } }; document.getElementById('salaries_product_link').onclick = function( e ) { var q = document.trends_search_form.q.value; var l = document.trends_search_form.l.value; if ( q || l ) { window.location = '/salary?q1=' + urlencode( q ) + '&l1=' + urlencode( l ); return false; } }; document.getElementById('forums_product_link').onclick = function( e ) { var q = document.trends_search_form.q.value; if ( q ) { window.location = '/forum/?q=' + urlencode( q ) + '&l=' + urlencode( document.trends_search_form.l.value ); return false; } }; </script> </td> </tr> </table> <div class="separator_top"> <p class="sectionTitle">Job Trends</p> </div> <table align="center" border="0" cellspacing="0" cellpadding="0" style="padding-left: 14px;"> <tr> <td colspan="2"> <h1>Job Trends</h1> </td> </tr> <tr> <td style="padding-right: 48px; width:540px" valign="top"> <div id="jt_meta"> <p>Research job trends based on Indeed's index of over 50 million jobs a year.</p> <p>Find how many job postings contain certain words or phrases using the examples on the right or by entering a search in the box above.</p> </div> <h2><span class="example">Example:</span> "social networking" Job Trends</h2> <p>The term "social networking" is increasingly appearing in job postings. It still can't beat out "<a href="/web/20090806041106/http://www.indeed.com/jobtrends?q=%22social+networking%22%2C+%22face+to+face%22&l=">face to face</a>" interactions though.</p> <div style="margin: 0; text-align: right; padding: 0 6px 3px;">Scale: <b>Absolute</b> - <a href="/web/20090806041106/http://www.indeed.com/jobtrends?relative=1" rel="nofollow">Relative</a> </div> <img width="540" height="300" src="/web/20090806041106im_/http://www.indeed.com/trendgraph/jobgraph.png?q=%22social+networking%22" border="0" alt=""social networking" Job Trends graph"> <br><br> <p style="text-align:center">Indeed.com searches millions of jobs from thousands of job sites.<br> This job trends graph shows the percentage of jobs we find that contain your search terms. </p> <p style="text-align:center">Find <a href="/web/20090806041106/http://www.indeed.com/jobs?q=%22social+networking%22">"social networking" jobs</a> </p> <div> <p style="text-align:center; margin-bottom: 0">Feel free to <a id="shareCode_bottom_link" href="#shareCode_bottom" onclick="simpleToggle( this, document.getElementById('shareCode_bottom'), { onopen: function() { var code = document.getElementById('graph_code_540x300_bottom'); code.focus(); code.select(); } } ); return false;">share this graph</a></p> <div id="shareCode_bottom" class="ws_content"> <p style="margin-bottom:0">Insert the code below into any webpage to include this graph:</p> <textarea id="graph_code_540x300_bottom" onclick="this.select();" rows="5" cols="40" readonly><div style="width:540px"> <a href="http://www.indeed.com/jobtrends" title="&#034;social networking&#034; Job Trends"> <img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=%22social+networking%22" border="0" alt="&#034;social networking&#034; Job Trends graph"> </a> <table width="100%" cellpadding="6" cellspacing="0" border="0" style="font-size:80%"><tr> <td><a href="http://www.indeed.com/jobtrends">&#034;social networking&#034; Job Trends</a></td> <td align="right"><a href="http://www.indeed.com/jobs?q=%22social+networking%22">&#034;social networking&#034; jobs</a></td> </tr></table> </div></textarea> </div> </div> <script type="text/javascript">document.getElementById('shareCode_bottom_link').className = 'closed'; document.getElementById('shareCode_bottom').style.display = 'none';</script> <div id="industry_trends"><p class="heading"><sup>New</sup> <a href="/web/20090806041106/http://www.indeed.com/jobtrends/industry">Industry Trends</a> - Job posting and click counts for major U.S. industries</p></div> </td> <td valign="top" align="left" id="sidebar"> <div id="email_this"> <a id="email_this_link" href="http://web.archive.org/web/20090806041106/mailto:/?subject=Job%20trends%20from%20Indeed&body=http%3A%2F%2Fwww.indeed.com%2Fjobtrends" class="closed" onclick="simpleToggle( this, document.getElementById('email_this_form'), { onopen: function() { document.getElementById('fromEmail').select(); } } ); return false;">Email to a friend</a> <div id="email_this_form" style="display:none" class="ws_content"> <div id="email_job_sts"></div> <form action="/web/20090806041106/http://www.indeed.com/rpc/sharetrends" method="get" onsubmit="genericEmailForm( this, 'email_job_sts', '/rpc/sharetrends'); return false;"> <input type="hidden" name="q" value=""> <input type="hidden" name="relative" value=""> <input type="hidden" name="title" value=""social networking" Job Trends"> <div class="lineItem"> <label for="fromEmail">From my email address</label><br> <input type="text" id="fromEmail" name="fromEmail" value=""> </div> <div class="lineItem"> <label for="toEmail">To email address</label><br> <input type="text" id="toEmail" name="toEmail" value=""> </div> <div class="lineItem"> <input type="checkbox" id="ccEmail" name="ccEmail" value="1"><label for="ccEmail">Send me a copy</label><br> </div> <div class="lineItem"> <label for="comments">Comments (optional)</label><br> <textarea id="comments" name="comments" rows="5" cols="40"></textarea> </div> <div class="lineItem"> <input type="submit" value="Send"> </div> </form> </div> </div> <div id="shareGraph"> <a id="share_this_link" href="#shareCode" onclick="simpleToggle( this, document.getElementById('shareCode'), { onopen: function() { var code = document.getElementById('graph_code_540x300'); code.focus(); code.select(); } } ); return false;">Post on your blog/website</a> <div id="shareCode" class="ws_content"> <p style="margin-bottom:0">Insert the code below into any webpage to include this graph:</p> <textarea id="graph_code_540x300" onclick="this.select();" rows="5" cols="20" readonly><div style="width:540px"> <a href="http://www.indeed.com/jobtrends" title="&#034;social networking&#034; Job Trends"> <img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=%22social+networking%22" border="0" alt="&#034;social networking&#034; Job Trends graph"> </a> <table width="100%" cellpadding="6" cellspacing="0" border="0" style="font-size:80%"><tr> <td><a href="http://www.indeed.com/jobtrends">&#034;social networking&#034; Job Trends</a></td> <td align="right"><a href="http://www.indeed.com/jobs?q=%22social+networking%22">&#034;social networking&#034; jobs</a></td> </tr></table> </div></textarea> </div> </div> <script type="text/javascript">document.getElementById('share_this_link').className = 'closed'; document.getElementById('shareCode').style.display = 'none';</script> <div id="sample_trends"> <div class="sample_trends_title">Sample Job Trends</div> <ul id="sample_searches"> <li> <b>Social Networking</b> </li> <li> <a title="hurricane katrina, hurricane rita, hurricane wilma job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=hurricanes">Hurricane Season 2005</a> </li> <li> <a title="christmas, thanksgiving job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=blackfriday">Shop 'til you Drop!</a> </li> <li> <a title=""tax preparer" job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=taxes">Death and Taxes</a> </li> <li> <a title=""H&R Block" tax, FedEx seasonal job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=hrblock">"What is H&R Block?"</a> </li> <li> <a title="comet, ajax job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=cleaners">Household Cleaners?</a> </li> <li> <a title="wiki job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=wiki">"Did You Read the Wiki?"</a> </li> <li> <a title="MSN nurse, BSN nurse, ASN nurse, LPN nurse job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=nursing">Nursing Demand</a> </li> <li> <a title="1999, 2000, 2001 job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=year2000">In the Year 2000...</a> </li> <li> <a title="february, september,july,,january, april, november, august,,june, december, march, october job trends" href="/web/20090806041106/http://www.indeed.com/jobtrends?cat=waves">Waves of Time</a> </li> </ul> </div> <p style="margin-left: 6px">Also see our <a href="/web/20090806041106/http://www.indeed.com/jobtrends.jsp">job postings per capita</a> page.</p> </td> </tr> </table> <div id="footer"> <div class="separator_bottom"></div> <div id="secondary_nav"> <a href="/web/20090806041106/http://www.indeed.com/find-jobs.jsp">Browse Jobs</a> - <a href="/web/20090806041106/http://www.indeed.com/tools/jobseeker/">Tools</a> - <a href="http://web.archive.org/web/20090806041106/http://ads.indeed.com/">Advertisers</a> - <a href="http://web.archive.org/web/20090806041106/http://ads.indeed.com/jobroll">Publishers</a> - <a href="/web/20090806041106/http://www.indeed.com/intl/en/about.html"><nobr>About</nobr></a> - <a href="/web/20090806041106/http://www.indeed.com/jsp/contactus.jsp">Contact</a> <br/> <br/><font size="-2">©2009 Indeed</font> </div> </div> </body> </html> <!-- FILE ARCHIVED ON 04:11:06 Aug 06, 2009 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 09:26:56 Nov 25, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 11.281 exclusion.robots: 0.034 exclusion.robots.policy: 0.021 esindex: 0.014 cdx.remote: 40.208 LoadShardBlock: 281.98 (3) PetaboxLoader3.datanode: 228.682 (4) PetaboxLoader3.resolve: 183.664 (2) load_resource: 453.069 -->