I have one button and i want to add a onmouseover and onmouseout effect to that button. I have two images for both onmouseover and onmouseout effects I have tried this
<p:commandButton onmouseover="../images/add_on_18.png"
onmouseout="../images/add_off_18.png"
value="New" />
Can you help me?
UpDate
I have tried this. No use. Still not getting the proper UI
XHtml Code:
<p:commandButton value="New"
styleClass = "btnBckg"
actionListener="#{routeController.createNewRoute}"
update=":routeHeaderForm"/>
CSS Code:
.btnBckg {
background-image: url('../images/add_off_18.png');
}
.btnBckg:hover {
background-image: url('../images/add_on_18.png');
}

