id のチェックボックスがあります#cond99
。ajax からロードされ、問題なく動作していますが、アクションを追加したいのですが、動作しません。誰でも私を助けることができますか?
jQuery = window.parent.jQuery;
jQuery(document).ready(function ()
{
jQuery('input.styled').iCheck(
{
checkboxClass: 'icheckbox_minimal-orange',
radioClass: 'iradio_minimal-orange',
increaseArea: '40%' // optional
});
jQuery('input.styled').iCheck('update');
jQuery("#cond999").bind("change", function ()
{
jQuery('#conditions_more').toggle();
});
});