just change your code as:
$(document).ready(function() { $('#addmoresg').click(function() { $('#addsg').show("slow"); }); });
Basically, you are targeting the adddsg class (made by .class ). Since the div has an adddsg identifier, you need to target using #ID
Hope this helps.
source share