Dear Sir/ Madam,
I'm currently looking for a currency conversion for my website, and I
found your sourse.
I would like to set 'gp_from' as USD and 'gb_to' as 'JPY', as default.
I could set 'gp_from' as USD, but cannot set 'gb_to' as 'JPY'.
I pasted my customized source below.
Could you kindly let me know how to set the 'gb_to' as 'JPY', please?
***************************
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
lang="en" dir="ltr">
<head>
<script type="text/javascript">
<!--
function geoplugin_currencyCode() { return 'USD';}
function geoplugin_currencySymbol() { return '$';}
//-->
</script>
</head>
<body>
<!-- when using Google to load JSON API -->
<script src="http://www.google.com/jsapi" type="text/javascript"></
script>
<script src="http://www.geoplugin.net/ajax_currency_converter.gp"
type="text/javascript"></script>
<!-- When using your own JSON API -->
<!-- <script src="http://www.geoplugin.net/ajax_currency_converter.gp?
nogoog=1" type="text/javascript">
</script> -->
<input type='text' id='gp_amount' size='4' />
<select id="gp_from"></select> to <select id="gp_to"></select>
<p><input type='button' onClick='gp_convertIt()' value = 'Convert It' /
></p>
<div id="gp_converted"></div>
<script>gp_currencySymbols()</script>
</body>
</html>
***************************
Best regards,
Ikumi