ソース言語の1つをクリックしたときに必要な入力フィールド(ソース言語)があり、同じテキストのターゲット言語が無効になっています
私はこれまでにそれを行いましたが、ソース言語をクリックするとターゲット言語が無効になり続けます
毎回リセットしたいもの..常にイベントを聞かせないようにする
これがデモですhttp://jsfiddle.net/ezNxU/
// change the target language according to the source language
$('#source').change(function () {
var option_source = $('select#source option:selected').text();
$('select#target option').each(function () {
if ($(this).text() == option_source) $(this).prop("disabled", true);
console.log($(this).text());
});
});