regluit/frontend/templates/cardscripts.html

14 lines
473 B
HTML
Raw Normal View History

2014-02-20 03:18:23 +00:00
<script type="text/javascript" src="/static/js/loader-gif.js"></script>
<script type="application/x-javascript">
var $j = jQuery.noConflict();
$j(document).ready(function() {
// don't let users modify their pledge amount on this page; it's just here for reference
// if they modified it here we'd have to faff about with validating premiums
2018-07-27 17:12:02 +00:00
if($j('#id_work_id').prop('value')!=""){
2014-02-20 03:18:23 +00:00
$j('#id_preapproval_amount').prop('disabled', true);
2018-07-27 17:12:02 +00:00
}
2014-02-20 03:18:23 +00:00
});
</script>