I have one HTML button like,
You can use the name property for that particular element. For example to set a border of 2px around an input element with name xyz, you can use;
$(function() { $("input[name = 'xyz']").css("border","2px solid red"); })
DEMO