Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
jQuery.extend(
{
/**
* Get ajax body
*
* @return ajax content
*/
getAjaxBody : function(responseText)
{
var bodyStart = responseText.toLowerCase().indexOf("<body>");
var bodyEnd = responseText.toLowerCase().indexOf("</body>");
if (bodyStart > -1 && bodyEnd > -1)
{
responseText = responseText.substring(bodyStart + 6, bodyEnd);
}
return responseText;
},
});
function getContent(url)
{
var options = {
beforeSend: function()
{
document.body.style.cursor = 'wait';
},
url : url,
type : "GET",
dataType: "text",
complete: function()
{
document.body.style.cursor = 'default';
},
success: function(responseText, statusText)
{
responseText = jQuery.getAjaxBody(responseText);
// c responseText делаете преобразования ссылок и
$('selector').html(responseText);
}
};
$.ajax(options);
return false;
}
// Ну и подключаем
$(document).ready(function()
{
getContent('http://www.nulled.cc/threads/226814/');
});
jQuery.extend(
{
/**
* Get ajax body
*
* @return ajax content
*/
getAjaxBody : function(responseText)
{
var bodyStart = responseText.toLowerCase().indexOf("<body>");
var bodyEnd = responseText.toLowerCase().indexOf("</body>");
if (bodyStart > -1 && bodyEnd > -1)
{
responseText = responseText.substring(bodyStart + 6, bodyEnd);
}
return responseText;
},
});
function getContent(url)
{
var options = {
beforeSend: function()
{
document.body.style.cursor = 'wait';
},
url : url,
type : "GET",
dataType: "text",
complete: function()
{
document.body.style.cursor = 'default';
},
success: function(responseText, statusText)
{
responseText = jQuery.getAjaxBody(responseText);
// c responseText делаете преобразования ссылок и
$('selector').html(responseText);
}
};
$.ajax(options);
return false;
}
// Ну и подключаем
$(document).ready(function()
{
getContent('Для просмотра ссылки Войдиили Зарегистрируйся');
});
$ajax не получится же чужие домены трогать! или я не въеду! плз пример на JSМожно короче через jquery: Для просмотра ссылки Войдиили Зарегистрируйся
Не забудьте про подмену реферера в запросе, яндекс с большой вероятностью следит за этим заголовком.
<iframe id="i" name="i" frameborder="0" allowtransparency="1" src="frame.html" style="display:none;" width="1000" height="1000"></iframe>
<script>
$(document).ready(function(){
setTimeout("$('#i').contents().find('div#j').css({'color' : '#f00'});$('#i').css({'display' : 'block'});", 2000)
});
</script>
<body><div id="j">Абракабабра</div>
</body>