I have added support forums here:
http://dev.jtsage.com/forums/index.php
I will continue to update the blog as often as I do now (snicker) - but new features will usually get announced in the forums first.

...a little development blog
I have added support forums here:
http://dev.jtsage.com/forums/index.php
I will continue to update the blog as often as I do now (snicker) - but new features will usually get announced in the forums first.

Yesterday, some changes were made to jQM that removed degradeInputs, and placed that responsibility in the enhancment plugins. SHA: 2a6c7fc1b9.
This is a nice little code snippet that will degrade a type="date" input to type="text" when data-role="datebox":
$( document ).bind( "pagebeforecreate", function( e ) {
$( ":jqmData(role='datebox')", e.target ).each(function() {
$(this).replaceWith(
$( "<div>" ).html( $(this).clone() ).html().replace( ...