I am using jQuery-mobile-iscrollview from :https://github.com/watusi/jquery-mobile-iscrollview, but this is not working when changing content styles (display:none to display:block) under scrollview content.
This is my code:
$(".collapse_btn").on('tap',function(){
$(this).siblings().toggle();
});
This is My HTML Code:
<div class="collapsible_step_two">
<div class="collapse_content_step_two">
<div class="ui-grid-a">
<div class="ui-block-a">
<button data-role="none" class="collapsecontent_btn">Whats Included ?</button>
</div>
<div class="ui-block-b" style="text-align:right;">
<button data-role="none" class="collapsecontent_btn">Information</button>
</div>
</div>
</div>
<button data-role="none" class="collapse_btn"></button>
</div>