As per Karthik_Mahalingam,
All of your elements is enclosed inside this div -
<div class="creditCardForm" style="display:none;">
The style is set to not display hence the fact that you see nothing whilst the code is running fine as expected to. Change this to -
<div class="creditCardForm" style="display:block;">