Creating a Button in jQuery
we can now create buttons that will take us to another page, when we click it, what we aregoing to do is that, we are to add classes to style a and button elements. input
buttons are enhanced by the button widget.
Note: that in 1.4 data- attributes will still work. The deprecated
buttonMarkup method will add the applicable classes to a (with data-role="button") and button elements. This method also adds the role="button" attribute to anchor elements.
Anchor buttons
<a href="#" class="ui-btn">Anchor</a> <button class="ui-btn">Button</button>
Input buttons
<form> <input type="button" value="Button"> <input type="submit" value="Submit"> <input type="reset" value="Reset"> </form>
Next How to link Buttons
No comments:
Write comments