I have this code here:
shortenURL('#(campaign.id)', url, function(shortenedURL) {
if (youtubeID && youtubeID != "") {
shortenedURL = clientUrl
}
$("#textCopiedModal #sharer-link").attr("href", 'javascript:openFacebook("' + shortenedURL + '")')
$("#textCopiedModal #sharer-link #social-network-name").text('Facebook')
$('#textCopiedModal').modal()
})
And I do not know what is this mean: $("#textCopiedModal #sharer-link")
It is clearly a JavaScript code. But what specific is it more? Some kind of AJAX expression?