View Single Post
ישן 26-08-07, 19:48   # 8
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

תנסה:
קוד:
function cp1255_utf8(s) {

  var test = /([à-ú])/g;

  return(s.replace

    (test,

      function($0) {
       // alert($0.charCodeAt(0));
        return(String.fromCharCode(215) + String.fromCharCode(($0.charCodeAt(0)+80)));

      }

    )

  );

}
  Reply With Quote