Всем привет, я полный новичок в яваскрипте.
помогите советом, как можно вызвать эту функцию по событию onclick
Сообщение от рони
|
<script>
(function ($)
{
$(function ()
{
$.ajax({
url: 'http://st1.bbcorp.ru/style/Mybb_Bend/Mybb_Bend.css',
type: 'GET',
success: function(res) {
var div = $('<div/>',{html:res.responseText});
$("#test").html(div.find('p').html());
}
});
}
)
}
)(jQuery)
</script>
|
function adv2(urls) {
jQuery.ajax({
url: urls,
type: 'GET',
crossDomain: true,
success: function(res) {
var tab = $(res.responseText).find('.content-item');
$(".news").append(tab);
}
});
}
сделал так, но тут ошибка кросдоменного запроса "No 'Access-Control-Allow-Origin' header is present on the requested resource."