i am trying to give margin-top:10px to id download-csv
Here is html and javascrpit:
<span style="display: inline;" id="download-csv"><input type="submit" id="csv_download" value="Download"></span>;
JavaScript :
var download_csv=document.getElementById("download-csv");
if(count_layer==1)
download_csv.setAttribute("style","margin-top:10px");
}else{
download_csv.setAttribute("style","margin-top:20px");
}
Its throws error TypeError: Cannot read property 'setAttribute' of null