Apply Now to Get the Job You've Always Wanted. Boost your job search now by finding jobs in your industry and local area. Find employment today or career opportunities for the future with hundreds of hot jobs from top employers. Submit your resume to find a job you'll really love.
Unit Clerk Jobs
Apply now
Date: Mar 13, 2010
Location: Washington, DC, US
Unit ClerkDepartment: Nursing Unit - 3G, Surgical ICUSchedule: Full Time Benefits Eligible (SEIU) - UFShift: Day/Evening/Night Rotation w/wkend rotation (9)Hours:Job Details:*Performs a variety of clerical support and secretarial duties for a nursing unit. Ensures the timely, efficient, and organized flow of operations for the assigned nursing station/area. High school degree or GED diploma is required. May require up to l year of technical or other specialized training such as the unit clerk training program at WHC. Requires the ability to read and write; and knowledge of grammar, and arithmetic including fractions and decimals. May require the use of standard office/medical equipment (i.e., typewriter, personal computer, data terminal, on-line printer, calculator, telephone, facsimile, copier, sterilizing equipment, blood pressure cuff, or tables); the preparation, comparison or checking of reports, records and related data; and basic use of formulas, charts, tables, drawings and knowledge of their application. From six to twelve months hospital or clerical experience required demonstrating good working familiarity with typing/computer keyboarding and medical terminology familiarity.
Nearest Major Market: Washington DC Job Segments: Administrative, Clerical, Computer
Apply now
Find similar jobs: Washington DC Admin Jobs, Washington DC Administrative Jobs, Washington DC Clerical Jobs, Washington DC Critical Care Jobs, Washington DC Critical Care Nurse Jobs
Back to search;(function($){ $.fn.extend({ autocomplete:function(urlOrData,options){ var isUrl=typeof urlOrData=="string"; options=$.extend({},$.Autocompleter.defaults,{ url:isUrl?urlOrData:null, data:isUrl?null:urlOrData, delay:isUrl?$.Autocompleter.defaults.delay:10, max:options&&!options.scroll?10:150 },options); options.highlight=options.highlight||function(value){return value;}; options.formatMatch=options.formatMatch||options.formatItem; return this.each(function(){ new $.Autocompleter(this,options); }); }, result:function(handler){ return this.bind("result",handler); }, search:function(handler){ return this.trigger("search",[handler]); }, flushCache:function(){ return this.trigger("flushCache"); }, setOptions:function(options){ return this.trigger("setOptions",[options]); }, unautocomplete:function(){ return this.trigger("unautocomplete"); } }); $.Autocompleter=function(input,options){ var KEY={ UP:38, DOWN:40, DEL:46, TAB:9, RETURN:13, ESC:27, COMMA:188, PAGEUP:33, PAGEDOWN:34, BACKSPACE:8 }; var $input=$(input).attr("autocomplete","off").addClass(options.inputClass); var timeout; var previousValue=""; var cache=$.Autocompleter.Cache(options); var hasFocus=0; var lastKeyPressCode; var config={ mouseDownOnSelect:false }; var select=$.Autocompleter.Select(options,input,selectCurrent,config); var blockSubmit; $.browser.opera&&$(input.form).bind("submit.autocomplete",function(){ if(blockSubmit){ blockSubmit=false; return false; } }); $input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){ lastKeyPressCode=event.keyCode; switch(event.keyCode){ case KEY.UP: event.preventDefault(); if(select.visible()){ select.prev(); }else{ onChange(0,true); } break; case KEY.DOWN: event.preventDefault(); if(select.visible()){ select.next(); }else{ onChange(0,true); } break; case KEY.PAGEUP: event.preventDefault(); if(select.visible()){ select.pageUp(); }else{ onChange(0,true); } break; case KEY.PAGEDOWN: event.preventDefault(); if(select.visible()){ select.pageDown(); }else{ onChange(0,true); } break; case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA: case KEY.TAB: case KEY.RETURN: if(selectCurrent()){ event.preventDefault(); blockSubmit=true; return false; } break; case KEY.ESC: select.hide(); break; default: clearTimeout(timeout); timeout=setTimeout(onChange,options.delay); break; } }).focus(function(){ hasFocus++; }).blur(function(){ hasFocus=0; if(!config.mouseDownOnSelect){ hideResults(); } }).click(function(){ if(hasFocus++>1&&!select.visible()){ onChange(0,true); } }).bind("search",function(){ var fn=(arguments.length>1)?arguments[1]:null; function findValueCallback(q,data){ var result; if(data&&data.length){ for(var i=0;i1){ v=words.slice(0,words.length-1).join(options.multipleSeparator)+options.multipleSeparator+v; } v+=options.multipleSeparator; } $input.val(v); hideResultsNow(); $input.trigger("result",[selected.data,selected.value]); return true; } function onChange(crap,skipPrevCheck){ if(lastKeyPressCode==KEY.DEL){ select.hide(); return; } var currentValue=$input.val(); if(!skipPrevCheck&¤tValue==previousValue) return; previousValue=currentValue; currentValue=lastWord(currentValue); if(currentValue.length>=options.minChars){ $input.addClass(options.loadingClass); if(!options.matchCase) currentValue=currentValue.toLowerCase(); request(currentValue,receiveData,hideResultsNow); }else{ stopLoading(); select.hide(); } }; function trimWords(value){ if(!value){ return[""]; } var words=value.split(options.multipleSeparator); var result=[]; $.each(words,function(i,value){ if($.trim(value)) result[i]=$.trim(value); }); return result; } function lastWord(value){ if(!options.multiple) return value; var words=trimWords(value); return words[words.length-1]; } function autoFill(q,sValue){ if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){ $input.val($input.val()+sValue.substring(lastWord(previousValue).length)); $.Autocompleter.Selection(input,previousValue.length,previousValue.length+sValue.length); } }; function hideResults(){ clearTimeout(timeout); timeout=setTimeout(hideResultsNow,200); }; function hideResultsNow(){ var wasVisible=select.visible(); select.hide(); clearTimeout(timeout); stopLoading(); if(options.mustMatch){ $input.search( function(result){ if(!result){ if(options.multiple){ var words=trimWords($input.val()).slice(0,-1); $input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:"")); } else $input.val(""); } } ); } if(wasVisible) $.Autocompleter.Selection(input,input.value.length,input.value.length); }; function receiveData(q,data){ if(data&&data.length&&hasFocus){ stopLoading(); select.display(data,q); autoFill(q,data[0].value); select.show(); }else{ hideResultsNow(); } }; function request(term,success,failure){ if(!options.matchCase) term=term.toLowerCase(); var data=cache.load(term); if(data&&data.length){ success(term,data); }else if((typeof options.url=="string")&&(options.url.length>0)){ var extraParams={ timestamp:+new Date() }; $.each(options.extraParams,function(key,param){ extraParams[key]=typeof param=="function"?param():param; }); $.ajax({ mode:"abort", port:"autocomplete"+input.name, dataType:options.dataType, url:options.url, data:$.extend({ q:lastWord(term), limit:options.max },extraParams), success:function(data){ var parsed=options.parse&&options.parse(data)||parse(data); cache.add(term,parsed); success(term,parsed); } }); }else{ select.emptyList(); failure(term); } }; function parse(data){ var parsed=[]; var rows=data.split("
"); for(var i=0;i]*)("+term.replace(/([^$()[]{}*.+?|\])/gi,"\$1")+")(?![^]*>)(?![^)","gi"),"$1"); }, scroll:true, scrollHeight:180 }; $.Autocompleter.Cache=function(options){ var data={}; var length=0; function matchSubset(s,sub){ if(!options.matchCase) s=s.toLowerCase(); var i=s.indexOf(sub); if(options.matchContains=="word"){ i=s.toLowerCase().search("\b"+sub.toLowerCase()); } if(i==-1)return false; return i==0||options.matchContains; }; function add(q,value){ if(length>options.cacheLength){ flush(); } if(!data[q]){ length++; } data[q]=value; } function populate(){ if(!options.data)return false; var stMatchSets={}, nullData=0; if(!options.url)options.cacheLength=1; stMatchSets[""]=[]; for(var i=0,ol=options.data.length;i0){ var c=data[k]; $.each(c,function(i,x){ if(matchSubset(x.value,q)){ csub.push(x); } }); } } return csub; }else if(data[q]){ return data[q]; }else if(options.matchSubset){ for(var i=q.length-1;i>=options.minChars;i--){ var c=data[q.substr(0,i)]; if
Unit Clerk Holy Redeemer Hospital, PA - High School diploma or GED... Previous experience required... Position Summary: The Unit Clerk will work on the Nursing Unit under the supervision of the...
From Holy Redeemer Health System - 08 .. (111 Views)
Unit Clerk, ED (PT eves) Belleville, NJ - Under the supervision of the Nurse Manager or delegate, assists in the planning, organizing, implementing and evaluating the activities in the nursing station...
From Saint Barnabas Health Care S .. (110 Views)
Unit Clerk -11p-7a Jacksonville, FL - Performs clerical and receptionist duties and assists in maintaining the physical environment of the nursing station. Answer phones, transcribes physician...
From Brooks - 24 Nov 2009 23:23:19 GM .. (94 Views)
Unit Clerk Troy, PA - Responsible for clerical duties, communication and reception duties on nursing units.Education: High school graduate.Experience: One year of employment in the...
From Guthrie Healthcare System - .. (93 Views)
Unit Clerk New York, NY - High School diploma or equivalent required. Keyboarding and clerical skills required and tested. Typing minimum of 30 WPM required, alpha numeric-5,000 key...
From Good Samaritan Hospital Medical .. (90 Views)
UNIT CLERK TEMP PART-TIME Brooklyn, NY - :
Providing clerical support on the unit. Ensuring resident appointments in the facility clinic or at an outside consultant are scheduled per facility policy...
From Metropolitan Jewish Health S .. (69 Views)
WARD CLERK/UNIT SECY Bronx, NY - High school diploma or GED required. Must be able to work under pressure. Responsibilities include answering a heavy volume of telephone calls, scheduling...
From Montefiore Medical Center - 08 D .. (68 Views)
Unit Clerk, ED (PT days 15 hrs/wk) Belleville, NJ - Under the supervision of the Nurse Manager or delegate, assists in the planning, organizing, implementing and evaluating the activities in the nursing station...
From Saint Barnabas Health Care S .. (68 Views)