');
function addKeywordToSearchArray(keyValue){
keywordData.push(keyValue);
}
function removeKeywordFromSearchArray(curObj){
var curVal = curObj.siblings('span.keyword-text').html();
keywordData = removeElementFromArray(keywordData,curVal);
}
$(document).ready(function(){
$('#searchFilter').on('click',function(e){
e.preventDefault();
redirectUrl = BASEURL+'search-interviewers/';
if(keywordData.length > 0){
redirectUrl = redirectUrl+'?keyword='+keywordData;
} else {
redirectUrl = redirectUrl+'?keyword=';
}
var searchType = $('#search_type').val();
if(searchType){
redirectUrl = redirectUrl+'&searchtype='+searchType;
}
var freelancer_type = [];var hourly_rate = [];var english_level = [];var skill = [];var country = [];var language = [];var keywords = [];
$('.freelancer_typeDesk:checked').each(function(i){
freelancer_type[i] = $(this).val();
});
if(freelancer_type.length > 0){
redirectUrl = redirectUrl+'&freelancerType='+freelancer_type;
}
$('.hourly_rateDesk:checked').each(function(i){
hourly_rate[i] = $(this).val();
});
if(hourly_rate.length > 0){
redirectUrl = redirectUrl+'&hourlyRate='+hourly_rate;
}
$('.skillDesk:checked').each(function(i){
skill[i] = $(this).val();
});
if(skill.length > 0){
redirectUrl = redirectUrl+'&skill='+skill;
}
$('.english_levelDesk:checked').each(function(i){
english_level[i] = $(this).val();
});
if(english_level.length > 0){
redirectUrl = redirectUrl+'&englishLevel='+english_level;
}
$('.countryDesk:checked').each(function(i){
country[i] = $(this).val();
});
if(country.length > 0){
redirectUrl = redirectUrl+'&country='+country;
}
$('.languageDesk:checked').each(function(i){
language[i] = $(this).val();
});
if(language.length > 0){
redirectUrl = redirectUrl+'&language='+language;
}
window.location.href=redirectUrl;
});
});
');
function addKeywordToSearchArray(keyValue){
keywordData.push(keyValue);
}
function removeKeywordFromSearchArray(curObj){
var curVal = curObj.siblings('span.keyword-text').html();
keywordData = removeElementFromArray(keywordData,curVal);
}
$(document).ready(function(){
$('#searchFilterMobile').on('click',function(e){
e.preventDefault();
redirectUrl = BASEURL+'search-interviewers/';
if(keywordData.length > 0){
redirectUrl = redirectUrl+'?keyword='+keywordData;
} else {
redirectUrl = redirectUrl+'?keyword=';
}
var searchType = $('#search_type').val();
if(searchType){
redirectUrl = redirectUrl+'&searchtype='+searchType;
}
var freelancer_type = [];var hourly_rate = [];var english_level = [];var skill = [];var country = [];var language = [];var keywords = [];
$('.freelancer_type:checked').each(function(i){
freelancer_type[i] = $(this).val();
});
if(freelancer_type.length > 0){
redirectUrl = redirectUrl+'&freelancerType='+freelancer_type;
}
$('.hourly_rate:checked').each(function(i){
hourly_rate[i] = $(this).val();
});
if(hourly_rate.length > 0){
redirectUrl = redirectUrl+'&hourlyRate='+hourly_rate;
}
$('.skill:checked').each(function(i){
skill[i] = $(this).val();
});
if(skill.length > 0){
redirectUrl = redirectUrl+'&skill='+skill;
}
$('.english_level:checked').each(function(i){
english_level[i] = $(this).val();
});
if(english_level.length > 0){
redirectUrl = redirectUrl+'&englishLevel='+english_level;
}
$('.country:checked').each(function(i){
country[i] = $(this).val();
});
if(country.length > 0){
redirectUrl = redirectUrl+'&country='+country;
}
$('.language:checked').each(function(i){
language[i] = $(this).val();
});
if(language.length > 0){
redirectUrl = redirectUrl+'&language='+language;
}
window.location.href=redirectUrl;
});
});
Do you like cookies? 🍪 We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.
Learn more
Ok