Implementing Jquery AnchorCloud Expanding Link Plugin Using Jquery.
💻 coding

Implementing Jquery AnchorCloud Expanding Link Plugin Using Jquery.

1 min read 161 words
1 min read
ShareWhatsAppPost on X
  • 1The jQuery AnchorCloud Link Identifier plugin enhances link expansion for web content using Yahoo Query Language for content extraction.
  • 2The initial version supports YouTube and Vimeo, with plans to include more popular video and photo services in future releases.
  • 3Basic setup requires including jQuery and the plugin script, followed by initializing the plugin within a document ready function.

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The jQuery AnchorCloud Link Identifier plugin enhances link expansion for web content using Yahoo Query Language for content extraction."

Implementing Jquery AnchorCloud Expanding Link Plugin Using Jquery.

Introducing a new jQuery AnchorCloud Link Identifier plugin, This helps make better and enrich link expanding system for your web content pages. This plugin developed using yahoo query language(YQL) for extracting website content like page title and description. The first version supports we included Youtube and Vimeo, next release we are planning to include some more popular video and photo services.

The Basic Setup

Include the jQuery and notification libraries into your document

<script src="jquery.js"></script>
<script src="js/jquery.anchorCloud.js"> </script>

Calling Plugin

$(document).ready(function()
{
$("body"). anchorCloud ();
});

Example Usage

<html>
<head>
<script src="jquery.js"></script>
<script type="text/javascript" src="js/jquery.anchorCloud.js"></script> 
<script type="text/javascript">
$(document).ready(function()
{
$(body).anchorCloud();
});
</script>
</head>
<body>
..................
Some text with contains links
..................
</body>
</html>

Plugin Theme Options

background // Background color Defeult #000000
title_color // Link or video title color Default #27ADDA
loading_text // Loading Mesaage Default Fetching data ...
description_color // Description Color Default #66666
anchor_default_color // Anchor Text color Default #006699
anchor_hover_color // Anchor text on hover color Default #006699

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

AskGif

Published on 26 August 2019 · 1 min read · 161 words

Part of AskGif Blog · coding

You might also like

Implementing Jquery AnchorCloud Expanding Link Plugin Using Jquery. | AskGif Blog