Search
 
SCRIPT & CODE EXAMPLE
 

HTML

Auto Update Form

function convertCurrency(value) {
    // your calculation here
    return (value * 356);
}

$('[name="amountUSD"]').on('change keyup', function() {
    value = $(this).val();
    $('[name="amountNGN"]').val(convertCurrency(value));
})

Comment

Auto Update Form

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form action="">
    <input type="number" name="amountUSD" value="1"><br/>
    <input type="number" name="amountNGN" value="">
</form>
Comment

PREVIOUS NEXT
Code Example
Html :: Prozent in html 
Html :: ms crm aadhar number validation javascript 
Html :: accident news report 
Html :: sematic ui modals 
Html :: mdn html map 
Html :: only one of my checkboxes will check if i click on its label 
Html :: how to set a string in one line html 
Html :: buy onion website 
Html :: html api 
Html :: haw to fmake a link open in a new tag in html 
Html :: uwp remove splash screen 
Html :: upwork 
Html :: bootstrap 5 natification 
Html :: ionic ngfor show limited number of items 
Html :: hello world html template download file 
Html :: iframe to fit screen in flutter 
Html :: Save free form description along with spaces and line breaks 
Html :: iframe html pdf download 
Html :: dijit/form/Textarea 
Html :: href in spring mvc 
Html :: render partial view to html string dotnet core 
Html :: strip newlines in jekyll 
Html :: design college website using html 
Html :: text process bar wpf 
Html :: gambar internal html 
Html :: star icon angular material 
Html :: how to add particle.js jquery 
Html :: aria label html 
Html :: change td color html 
Html :: common html tags 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =