[Solved] Hide / Show Multiple Divs


As per viewing code from View Souce and guessing that you have not added correct class in event handler. thus click event for radio is not getting invoked.

Change

$(".payOptions").click(function () {

to

$(".paymentmethod").click(function () {

2

solved Hide / Show Multiple Divs