Skip to content

Instantly share code, notes, and snippets.

@jpogran
Created March 16, 2011 13:54
Show Gist options
  • Save jpogran/872525 to your computer and use it in GitHub Desktop.
Save jpogran/872525 to your computer and use it in GitHub Desktop.
aspnet mvc html5 jquery mobile tip
//http://fullsaas.blogspot.com/2011/02/tip-for-aspnet-mvc-3-in-jquery-mobile.html
//entering the following:
@Html.ActionLink("My team", "UsersList", "Home", null,
new { data_theme = "b", data_transition = "fade",
data_icon = "star" })
//#shows
<a data-icon="star" data-theme="b" data-transition="fade"
href="/Home/UsersList">My team</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment