Page 1 of 1

javascript button s

Posted: Mon Sep 16, 2013 6:03 am
by Shim
Is it possible to customize javascript button with css?

Re: javascript button s

Posted: Mon Sep 16, 2013 7:09 am
by Filip
Which JavaScript button? Are you reffering to <input type="button" />?

Re: javascript button s

Posted: Mon Sep 16, 2013 8:18 am
by Shim
#Filip yes that one.

Re: javascript button s

Posted: Mon Sep 16, 2013 9:41 am
by Filip
That's HTML button then. Yes of course it is possible:

To style all buttons on page, do this:
Code: Select all
input [type=button] {  }
Or use classic id/class styling

Re: javascript button s

Posted: Mon Sep 16, 2013 10:05 am
by Shim
#Filip it worked, Thank you..