We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7656a4 commit 4ad3d00Copy full SHA for 4ad3d00
Example.html
@@ -10,7 +10,8 @@ <h1>Example FixLanguageType.js</h1>
10
<br><br>
11
Enter Text :
12
<input type="text" name="text" id="text">
13
- <button onclick="en_to_fa();">Check</button>
+ <button onclick="en_to_fa();">Convert to fa</button>
14
+ <button onclick="fa_to_en();">Convert to en</button>
15
<br>
16
<div id="result"></div>
17
<script type="text/javascript">
@@ -20,6 +21,10 @@ <h1>Example FixLanguageType.js</h1>
20
21
{
22
result.innerHTML=fixtype.en_fa( text.value );
23
}
24
+ function fa_to_en()
25
+ {
26
+ result.innerHTML=fixtype.fa_en( text.value );
27
+ }
28
</script>
29
</body>
30
</html>
0 commit comments