Links

Last Updated : 21 Jan, 2013

You can view links according to topics here. You can also submit a new link using “Add a Link”.

[wplinkdir]


Share your thoughts in the comments

Similar Reads

Difference between normal links and active links
Websites are designed to point you to different resources. You can move from one website to another through links. Links help you to get information from different resources. Links are established in simple HTML web pages through <a> tag.Links are categorized into three types. Typically a Link is displayed in three different colors based on t
2 min read
How to Create Symbolic Links and Hard Links in Java?
Java file system provides both hard and symbolic links, which let us make references to files and directories. In this article, we will learn how to create symbolic links and hard links in Java. Soft Links or Symbolic Links: Symbolic links are names of files or directories. They may stretch across several file systems and serve as pointers to the o
3 min read
Pairwise Swap Nodes of a given linked list by changing links
Given a singly linked list, write a function to swap elements pairwise. For example, if the linked list is 1->2->3->4->5->6->7 then the function should change it to 2->1->4->3->6->5->7, and if the linked list is 1->2->3->4->5->6 then the function should change it to 2->1->4->3->6->5
19 min read
GATE 2016 Important Dates and Links
Important dates GATE Enrollment Website Opens: Sept 1, 2015 Last Date for Submission of Application: Oct 8, 2015 Availability of Admit Card: Dec 17, 2015 GATE 2016 Online Examination: Jan 30 to Feb 07, 2016 Results on Website: March 19, 2016 Important Links GATE 2016 Official Website Sample Virtual Calculator JAM 2016 Paper Pattern
1 min read
How to Remove Firefox's Dotted Outline on Buttons and links using CSS ?
In Firefox browser, dotted outline appears around the buttons, links as well as inputs. The ability to tell which piece is now in focus makes this outline useful for people who browse the web using a keyboard. This is a feature of Firefox's accessibility tools, which seek to make it simpler for users to navigate online pages using keyboard shortcut
3 min read
Display the number of links present in a document using JavaScript
Any webpage that is loaded in the browser can be represented by the Document interface. This serves as an entry point to the DOM tree and the DOM tree contains all elements such as <body> , <title>, <table> ,<a> etc. We can create a Document object using the Document() constructor. There are many properties of these Document
2 min read
ML | Text Summarization of links based on user query
Whenever a user searches for particular information on the internet, multiple results are returned which are explained in variety ways. It becomes difficult and time-consuming to understand information. Let's say for example when a user searches for “machine learning” on Google, number of results are returned. Results returned by Google related to
3 min read
HTML DOM links Collection
The DOM links collection is used to return the collection of all <a> and <area> elements with the "href" attribute in the HTML document. The elements in the collection are sorted as they appear in the sourcecode. Syntax: document.links Properties: It contains a single property length which is used to return the number of <a> and
4 min read
How to Share Links to Your ChatGPT Conversations
Users of ChatGPT can now share chatgpt conversation with the chatbot with other people through a new feature from OpenAI called "Shared Links."[caption width="800"] [/caption]Just a few days after launch, ChatGPT reached one million users. It had over 25 million daily views by the beginning of February 2023, with 100 million unique visitors. This m
3 min read
How to disable HTML links using JavaScript / jQuery ?
Given an HTML link and the task is to disable the link by using JavaScript/jQuery. Approach 1: Disable HTML link using JavaScript using setAttribute() Method. JavaScript setAttribute() Method: This method adds the defined attribute to an element and gives it to the passed value. In case of the specified attribute already exists, the value is set/ch
5 min read