add select

by idfrnffnd

HTML

<body>
	<table>
		<tr>
  			<td class="here" colspan="2"> </td>
  	</tr>
		<tr>
			<td colspan="2" ><a style="color: #4F7942; cursor: pointer;" onclick="add()">Add Select</a></td>
		</tr>
	</table>
</body>

JavaScript

function add(){
	var container = document.querySelector(".here");
	
	if(container){
		container.innerHTML += `
        <table>
        <tr>
						<td>
							<select class="abc" name="any[]">
								<option value="" selected disabled>Select....</option>
								<option>1</option>
								<option>2</option>
								<option>3</option>
               </select>
						</td>
        </tr>
     </table>
		`;
	}
}