Call 01 6775188 or 087 093 6031
Ethiopiaid Ireland
The Boat House, Bishop Street. Dublin 8
jQuery(function($)
{
// Change form with pipes class text & values
$('.wpcf7-form .wpcf7-select option').each(function(index,element) {
// Split element text by "|" divider
var data = element.text.split('|');
$(this).text(data[0]);
$(this).val(data[1]);
});
});