I am brand new to using phonegap and I need some help figuring things out.
Here is the script source:
<script src="http://www.transfermate.com/en/exchange_rates_api.asp"></script>
I am attempting to remove the
s in the div 'currency_converter_calculator_subscribe_form_under_info.'
This is what I have tried so far:
$('#currency_converter_calculator_subscribe_form_under_info.form_under_info calculator_subscribe_form_under_info br').remove();
EDIT The issue is that the script generates a string like this:
4 USD United States of America Dollars
=
3.1308 EUR Euro
To reduce the space taken up by the line, I either need to eliminate the
s or shorten the string. I know that after the number, there will always be a 3-character acronym such as USD, EUR. Another option would be to extract the part of the string between this character code and before the = sign, but I am struggling with referencing the label properly:
$('#currency_converter_calculator_subscribe_form_under_info').val('testing');
The ideal solution would be:
4 USD = 3.1308 EUR
Any assistance would be greatly appreciated.