RSS <textInput> tag
Usage
Specifies a textbox to be displayed with an RSS feed.
Child elements
NOTE: All child elements of the <textInput> tag are required.
| Tag | Description |
|---|---|
| <description> | Description for the textbox |
| <name> | Name of the textbox |
| <link> | The URL where the data input into the textbox will be sent |
| <title> | Text to display on the submit button that will appear automatically next to the textbox |
Example
RSS feed with textbox:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Landofcode.com web tutorials updates</title>
<link>http://www.landofcode.com</link>
<description>Web development tutorials</description>
<textInput>
<description>Yahoo search</description>
<name>p</name>
<link>http://search.yahoo.com/search?<link>
<title>Search Yahoo<title>
</textInput>
<item>
<title>Site usability</title>
<link>http://www.landofcode.com/usability.html</link>
<description>Learn how to improve the usability of your site</description>
</item>
<item>
<title>New HTML tutorials</title>
<link>http://www.landofcode.com/html-tutorials/</link>
<description>Five new HTML tutorials have been added</description>
</item>
</channel>
</rss>