Reputation: 46222
I currently have a jquery page where I am using Delete and Edit icons. For the delete icon, I am using:
data-icon="delete"
For the edit icon, I am using
data-icon="plus"
Just wondering what the standard icon is for edit.
Thanks in advance
Upvotes: 1
Views: 529
Reputation: 191
I think there is not a default icon for edit.
Maybe I would also use data-icon="plus"
or data-icon="gear"
.
If you want you can use a custom icon.
http://andymatthews.net/code/jQuery-Mobile-Icon-Pack/font-awesome/ - This is a nice pack (data-icon="pencil" would do the work for you, I think.)
Regards!
P.S. I have read what Gajotres answered. It is great that this icon is added in jQuery Mobile latest! Thanks for the info!
Upvotes: 2
Reputation: 57309
It is :
data-icon="edit"
But you will need to use at least jQuery Mobile 1.3 to have it available.
Working jsFiddle example: http://jsfiddle.net/4z64J/
Upvotes: 3