Skip to content

Instantly share code, notes, and snippets.

@cinek19
Created October 22, 2015 12:59
Show Gist options
  • Save cinek19/75006f42602b193599dc to your computer and use it in GitHub Desktop.
Save cinek19/75006f42602b193599dc to your computer and use it in GitHub Desktop.
Conversor from € to pesetas
/**
* Created by efren on 22/10/2015.
*/
$('input[id=eur]').change(function() {
document.getElementById("pts").value = Math.ceil($("#eur").val()*166.66);
});
$('input[id=pts]').change(function() {
document.getElementById("eur").value = parseFloat($("#pts").val()/166.66).toFixed(2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment