I need element title from this web page: http://www.filehippo.com
Something like this:
<html>
<head>
<script type="text/javascript" src="javascript/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#elem").load("http://www.filehippo.com/ title");
});
</script>
</head>
<body>
<div id="elem"></div>
</body>
</html>