Alert box

alert

by Narendra Vishwakarma

HTML

<input type="button" value="click" id ="my" />

JavaScript

//show only first li, but hid span
$('#my').on('click', function(){
	alert('df');
});