Jquery: can't drag input images.

Jquery: can't drag input images.

Hi, I got a few input images that I want to be draggable.  but when I used the jquery .ui draggable it would add the class to the input images but the input image won't be draggable. 

Does the drag by jquery .ui allow input images to be draggable? 


here is the code I am trying to do :
  1. <input type="image" id="contact_button" src="/location/contact_button.png">
Here is the jquery code:

  1. $("input,#contact_button").draggable();
I have selected all inputs and the contact button. Which is a input image.

this does get the jquery.ui class to make it draggable. It's just not working for this element. No input elements work. I also made divs and images draggable and the code works for them perfectly.