если вы используете jQuery, который, как я полагаю, вам нужен, вам необходимо запустить первый файл js: http://platform.linkedin.com/in.js
, поэтому убедитесь, что у вас есть:
<script src="http://platform.linkedin.com/in.js" type="text/javascript"></script>
глава документа.
и затем в теле, когда вы называете это:
$(function(){
...
//here is the hack:
resultsHtml += '<sc'+'ript type="IN/MemberProfile" data-id="'+currResult.publicProfileUrl+'" data-format="inline"></sc'+'ript>';
//remember to close script tags
$("#search-results").html(resultsHtml);
...
})
или вы можете попробовать это:
$(function(){
...
var $script = $('<script>',{
'data-format': 'inline',
type: 'IN/MemberProfile',
'data-id': "'+currResult.publicProfileUrl+'"
})
$("#search-results").html(resultsHtml);
$("#search-results").append($script);
...
})