job.org.es :: JOBRAPIDO - empleo trabajo buscar empleo ofertas de empleo buscar trabajo bolsa trabajo bolsa empleo oferta de trabajo oferta de empleo busco empleo busco trabajo busqueda empleo página encontrar trabajo webs de empleo info empleo agencias de trabajo puesto de trabajo busca empleo busca trabajo -

Busca trabajo entre todas las ofertas de empleo publicadas en la web en España.

empleo trabajo buscar empleo ofertas de empleo buscar trabajo bolsa trabajo bolsa empleo oferta de trabajo oferta de empleo busco empleo busco trabajo busqueda empleo página encontrar trabajo webs de empleo info empleo agencias de trabajo puesto de trabajo busca empleo busca trabajo

Busca trabajo entre todas las ofertas de empleo publicadas en la web en España.


























Jobrapido | Bolsa trabajo, ofertas empleo




























function trim(stringValue)
{
return stringValue.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}

function pop(myurl,dx,dy,target,mode)
{
if (target == undefined) target = '_blank'
var options = 'left=' + Math.ceil((screen.width-800)/2 + dx) + ',top=' + Math.ceil((screen.height-600)/2 + dy) + ',width=800,height=600'
if (mode == "prompt") options += ",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,directories=no"
else if (mode == "browse") options += ",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,directories=no"
else options += ",status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes,directories=yes"
win = window.open(myurl,target,options); try { win.focus(); } catch(e) { }; return false;
}

function submitForm(form) {
if ( raiseEvent(form, 'submit') )
form.submit();
}

function raiseEvent(element, event) {
var cancelDefault;
if ( element.fireEvent ) {
cancelDefault = element.fireEvent('on' + event);
} else if(document.createEvent) {
var submitEvent = document.createEvent('HTMLEvents');
submitEvent.initEvent(event, true, true);
cancelDefault = element.dispatchEvent(submitEvent);
}
return cancelDefault;
}




var _gaq = [['_setAccount','UA-23280831-1'], ['_setDomainName','.es.jobrapido.com'], ['_addIgnoredRef', 'es.jobrapido.com'], ['_addIgnoredOrganic', 'rapid'], ['_addIgnoredOrganic', 'jobrapido']];



html, body {background: #f2f2f2}
#maincontainer{background-color: #F1F1F1;background-image: url("/images/bg_main.png");background-repeat: repeat-x;min-height:500px}
#footer {position: relative;bottom: 0;left:0;min-width: 984px;border-bottom: 1px solid white}




















Busca entre todas las ofertas de empleo presentes en la web en el Mundo

































¿Qué trabajo buscas?


 

¿Dónde?

AEAOARATAUBEBRCACHCLCOCZDEDKDODZECESFRGTHKHUIDIEINITKEMAMXMYNGNLNZPEPHPKPLPTQARUSASESGTHTRUKUSUYVEZA





XXX


 









Las profesiones más buscadas



Analista Programador


Ingeniero De Telecomunicaciones


Auxiliar Administrativo


Director Financiero


Consultor Comercial


Técnico Informático


Recepcionista Hotel


Marketing Manager


Agente De Ventas


Operario De Almacén

Busca por profesión



 


Las ciudades más buscadas



Madrid


Barcelona


València


Sevilla


Málaga


Zaragoza


Murcia


A Coruña


Alacant


Valladolid

Busca por localidad














Distancia

-15 km30 km45 km60 km




 




Recibe por email










jQuery(document).ready(function(){
initCountryCombo();

initializeExampleText();
$("#jobtitlesmallset_head").click(function(){
$("#jobtitlesmallset_list").toggle();
$(".iconsmall div",this).toggleClass("expanded");
});
$("#locationsmallset_head").click(function(){
$("#locationsmallset_list").toggle();
$(".iconsmall div",this).toggleClass("expanded");
});

});





function onSelectEventSubmitForm(event, select) {
switch ( event.type ) {
case 'keyup':
if (event.keyCode == 13) {
submitForm(select.form);
break;
}
case 'keydown':
case 'mouseup':
case 'mousewheel':
select.lastButOneRelevantEventType = event.type;
break;
case 'change':
handleChangeEvent(select);
select.lastButOneRelevantEventType = undefined;
break;
}
return true;

function handleChangeEvent(select) {
switch ( select.lastButOneRelevantEventType ) {
case 'keydown':
case 'keyup':
case 'mousewheel':
break;
default:
submitForm(select.form);
}
}
}

function onSearchFormSubmit(form) {
// if we are on a country HP and locale country is selected, it should be like combo box is not filled
var isInternationalHP = 0;
var localeCountry = "es";
var noCountry = "world";

if (isInternationalHP == 1) {
if (!validateSelectedCntInternationalHP(noCountry)) {
showErrorNoCntInternationalHP(true);
return false;
}
} else {
var isValid = (!blankFields(form) || validateSelectedCntInternationalHP(localeCountry));
return isValid;
}
}

function toggleErrorMessage() {
// when we change combo box we have to disable error messages in case there were some
var isInternationalHP = 0;
var localeCountry = "es";
var noCountry = "world";

if ((isInternationalHP==1) && (validateSelectedCntInternationalHP(noCountry)==1)) {
showErrorNoCntInternationalHP(false);
}
}

function blankFields(form) {
var blankFields = jQuery.trim(form.elements.w.value).length == 0 && jQuery.trim(form.elements.l.value).length == 0;
return blankFields
}

function validateSelectedCntInternationalHP(value) {
var scnt = $("select[name=scnt] option:selected").val();
return scnt != value;
}

function showErrorNoCntInternationalHP(show) {
if(show) {
$("#nocntwarningdiv").css("display","block");
} else {
$("#nocntwarningdiv").css("display","none");
}

}

function exampleHandler(event){
switch (event.type) {
case 'blur':
showExampleText(jQuery(event.currentTarget));
break;
case 'focus':
hideExampleText(jQuery(event.currentTarget));
break;
default:;
}
}

function showExampleText(field){
if (field.val()=="") {
var exampleDiv = jQuery("div.exampleText",field.parent())
exampleDiv.show();
}
}

function hideExampleText(field){
var exampleDiv = jQuery("div.exampleText",field.parent());
exampleDiv.hide();

}

function buildExampleDiv(field) {
var jrexampleText = field.attr("jrexample");
field.parent().append(""+jrexampleText+"");
var exampleDiv = jQuery("div.exampleText",field.parent());
exampleDiv.bind('click',function(){field.focus();});
exampleDiv.height(field.height());
exampleDiv.css("font-size",field.css("font-size"));
exampleDiv.css("margin-bottom","-"+exampleDiv.height()+"px");
exampleDiv.offset({top:-exampleDiv.height(),left:2});
}

function initializeExampleText(){
jQuery("input[jrexample]").each(function(index){
var field = jQuery(this);
field.bind('blur',function(event){exampleHandler(event);});
field.bind('focus',function(event){exampleHandler(event);});
buildExampleDiv(field);
field.blur();
});
}

function initCountryCombo() {
$("select[name=scnt]").bind('change',toggleErrorMessage);
$($("select[name=scnt]").get(0)).msDropDown({mainCSS:'dd'});
$($("select[name=scnt]").get(1)).msDropDown({mainCSS:'dd', visibleRows:'3'});

// init flags
$(".fielddropdown.country").each(function(index, fielddropdown) {
var options = $("select[name=scnt] option", fielddropdown);
var dropdownChildren = $("div.ddChild a", fielddropdown);

for (i=0;i

if (window.opera && window.opera.renderingMode == "ERA") alert(' El modo de visualización de pantalla “Ajustar en anchura” del navegador Opera no es compatible. Cambia a modo de pantalla normal presionando Ctrl + F11.');






















X












#modalBackground
{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9900;
background-color:#333333;
display: none;
}

#modalDialog
{
position: fixed;
width: 530px;
z-index: 9999;
background-color: white;
display: none;
border: 1px solid #375FAB;
}

#subscription-button{
font-size: 13px;
font-family:verdana,arial,sans-serif;
text-align:center;
padding:0px;
width:80px;
height:24px;
}

#condition-label{
padding-left: 3px;
position:relative;
top:-3px
}

.modalDialogRoundedCorners{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;

}

.modalDialogRoundedCorners #modalDialogTitle{
font-family: arial;
}

.modalDialogRoundedCorners input{
height: 24px;
font-size: 13px;
font-weight: bold;
}

.modalDialogRoundedCorners #demCheckbox{
display: none;
}

.modalDialogRoundedCorners #subscription-button{
font-size: 13px;
font-weight: bold;
font-family:verdana,arial,sans-serif;
color: #ffffff;
text-align:center;
padding:0px;
width:100px;
height:30px;
border: 0;
background: #fff url(/images/subscription-button.jpg) 0 0 no-repeat;
cursor: pointer;
}

.modalDialogRoundedCorners #condition-label{
padding-left: 3px;
position:relative;
top:-9px
}










MyModalDiv = function(){

// private stuff here

// in case of ie
var ie = $.browser.msie;
var browserVersion = $.browser.version;

// center the modal box on resize event
$(window).bind('resize', function() {
centerModalDialogOnWindowResize();
});

// center the modal box on scroll event
$(window).bind('scroll', function() {
centerModalDialogOnWindowResize();
});

// escaping the dots in html element id for jquery selector
function getDottedIdForJQuery(clearId){
return clearId.replace(/\./g, "\\.");
}

// center the modal dialog box in the screen
function centerModalDialogOnWindowResize() {
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();

//Set height and width to mask to fill up the whole screen
$('#modalBackground').css({'width':maskWidth,'height':maskHeight});

//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
var offSet = 0;
//handle the scrolling event for ie 6
if(ie && browserVersion == "6.0"){
var scrollTop = $(window).scrollTop();
if(scrollTop != undefined && scrollTop > 0){
offSet = scrollTop;
}
}

//Set the popup window to center
var id = "#modalDialog"
$(id).css('top', offSet+(winH/2-$(id).height()/2));
$(id).css('left', winW/2-$(id).width()/2);
}


function popUpCloseUrl() {
// Read
var closeUrl = $(getDottedIdForJQuery('#modalDialog.OpenOnCloseURL')).val();

// Popup
if ((closeUrl != undefined) && (closeUrl != '')) {
pop(closeUrl, 0, 0);
}

// Clean
$(getDottedIdForJQuery('#modalDialog.OpenOnCloseURL')).val('');
}

function hideSelectTags() {
var selectTags =jQuery("select[name=r]");
var removedSelect = [];
var i, select;

for (i=selectTags.length-1; i>-1; i-- ) {
select = selectTags[i];

//quick and dirty workaround
if (select.id != "Dialogs.Jobletter.Subscription.Extended.Radius") {
if (!jQuery(select).hasClass("_xreplaced")) {
var replacement = createSimilarTextInput(select);
jQuery(select).hide();
jQuery(select).after(replacement)
select.replacement = replacement;
removedSelect.push(select);
jQuery(select).addClass("_xreplaced");
} else {
removedSelect.push(select);
}
}
}

hideSelectTags.removedSelect = removedSelect;

if ( hideSelectTags.restoreSelectTags ) {
restoreSelectTagsVisibility();
hideSelectTags.restoreSelectTags = false;
}
}

function createSimilarTextInput(select) {
var textInput = document.createElement("INPUT");
textInput.style.fontFamily = select.style.fontFamily;
textInput.style.fontSize = select.style.fontSize;
jQuery(textInput).css("width", (select.offsetWidth - 6) +"px");
jQuery(textInput).css("height", (select.offsetHeight - 6) +"px");
textInput.value = select.options[select.selectedIndex].text
return textInput;
}

function restoreSelectTagsVisibility() {
var selectTags = hideSelectTags.removedSelect;
var i, select;
if ( selectTags ) {
for (i=0; i












¿Qué trabajo buscas?


¿Dónde?








1.






 




2.






 




3.






 




 




Guardar





 


















MarkenInformation:

Partners:

Impressum/Contact

Tweet