Does $.browser exists in jqueryV1.10.2.js?

Does $.browser exists in jqueryV1.10.2.js?

Recently, I found that when I use jqueryV1.8.3.js, the follwing codes works .When I use jqueryV1.10.2.js,these codes does not work.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<style type="text/css">
body{
font-size:13px;
}
div{
margin:5px;
padding:10px;
border:1px solid #666;
background-color:#eee;
width:300px;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(function(){
var strTmp="您的浏览器名称是:";
if($.browser.msie){
strTmp+="IE";
}
if($.browser.mozilla)
{
strTmp+="Mozilla FireFox";
}
strTmp+="版本号是:"+$.browser.version;
$('#divTip').html(strTmp);
});
</script>
</head>
<body>
<div id="divTip"></div>
</body>
</html>