The popup works, but every time I click the SET button, it seems to try to enter the value into the INPUT field and then weird stuff happens: The page flickers, almost like it is refreshed, and all of the values in the INPUTS are cleared. Then a text value in a page header gets repeated below itself. This repros in Firefox, Chrome, Safari. I've temporarily opened permissions on this page if someone would be kind enough to put an extra pair of eyeballs on this: http://bit.ly/MD8FVW
Here is my code:
var now = new Date();
$('#sessionTime').scroller({
preset: 'datetime',
minDate: new Date(now.getFullYear(), now.getMonth(), now.getDate()),
theme: 'ios',
display: 'modal',
mode: 'scroller'
});
$('#sessionTime').click(function(){
$('#sessionTime').scroller('show');
return false;
});
I'm also using iUI on the page to simulate an iOS look, but I don't know if that is interfering. Any ideas would be much appreciated!