jQuery: select an element’s class and id at the same time?
$("#country.save")
OR
$("a#country.save")
OR
$("a.save#country")
.append()
will append it at the end of.prepend()
will pre-pend it, at the beginning of it, like what you’re trying to achive.