Improvisiong with what I have...button icons

Improvisiong with what I have...button icons

I am not good with jQuery, so don't try and throw something foreign to me and change the entire code. 

I want to use the buttons with icons, but the catch is that I am trying to use them with an input tag instead of a button tag. here's what I have in my script tag:
  1. <script>
  2. $(function() {
  3. $( "button:first" ).button({
  4. icons: {
  5. primary: "ui-icon-home"
  6. }
  7. }).next().button({
  8. icons: {
  9. primary: "ui-icon-locked"
  10. }
  11. }).next().button({
  12. icons: {
  13. primary: "ui-icon-gear",
  14. secondary: "ui-icon-triangle-1-s"
  15. }
  16. });
  17. });
  18. </script>
But I want to use them with <input> tags. What do I need to change in the script above for it to work? And to see what input tags I am working with, this is what I have in my body tag below:

  1. <input type="reset" value="Clear"/>
  2. <input type="submit" value="Login"/>
  3. <input type="button" value="Home"/>
Yes, I know I can use a <button> tag, but for my special case, I can't do what I want to do with that tag.