Tuesday

jquery mobile caching issue resolved

below is set of scripts I added to page header to resolve jquery mobile caching issue
       


<!DOCTYPE html>
<html>
<head runat="server">
<meta charset="utf-8">
<title>Personal Info</title>
<link href="mobile.css" rel="stylesheet" type="text/css"/>

<link href="jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/>
<link href="jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/>
<script src="jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="jquery.mobile-1.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});

$("#form1").submit(function(){
$.mobile.changePage({
url: "PersonalInfo.aspx",
type: "post",
data: $("form#form1").serialize()
}, "pop", false, false);
}
return false;
});

</script>
</head> <body> <form id="form1" runat="server"> ...

No comments:

imagemagic add text to image

rem different types of text annotations on existing images rem cyan yellow orange gold rem -gravity SouthWest rem draw text and anno...