Saturday, July 25, 2015

get radio button and checkbox value using jquery

How to know checkbox has selected or not using jquery

<input type='checkbox'  id="chkAT">


 var isChecked = $('#chkAT').is(':checked');

     alert(isChecked);


get radiolist selected value :

$('input:radio[name=rdb1]:checked').val();

Convert Html to Pdf in azure function and save in blob container

 In this post  I am going to create an azure function ( httpTrigger ) and send html content  which will be converted into PDF and save in bl...