<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>New item Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/new-item/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/new-item/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Mon, 17 Jul 2017 11:07:45 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Change new item text in SharePoint</title>
		<link>https://blog.binarybits.net/change-new-item-text-sharepoint/</link>
					<comments>https://blog.binarybits.net/change-new-item-text-sharepoint/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Mon, 17 Jul 2017 10:52:31 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[New item]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=916</guid>

					<description><![CDATA[<p>The following script changes the &#8220;new item&#8221; link button in SharePoint view form to whatever we desire. Add either of the script to content editor web part. Plain JavaScript version: (This code assumes that there is only one &#8220;new item&#8221; text in the entire page.) &#60;script&#62; document.addEventListener("DOMContentLoaded", function () { ExecuteOrDelayUntilScriptLoaded(function () { var ReRenderListView_old [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/change-new-item-text-sharepoint/">Change new item text in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The following script changes the &#8220;new item&#8221; link button in SharePoint view form to whatever we desire.</p>
<p>Add either of the script to content editor web part.</p>
<p><strong>Plain JavaScript version: </strong>(This code assumes that there is only one &#8220;new item&#8221; text in the entire page.)</p>
<pre class="lang:xhtml decode:true ">&lt;script&gt;
    document.addEventListener("DOMContentLoaded",
        function () {
            ExecuteOrDelayUntilScriptLoaded(function () {
                var ReRenderListView_old = ReRenderListView
                ReRenderListView = function (b, l, e) {
                    ReRenderListView_old(b, l, e)
                    changeText()
                }
            }, "inplview.js")
            changeText()
        }
    );

    function changeText() {
        var element = document.querySelector('#idHomePageNewItem span:nth-child(2)')
        element ? (element.innerHTML = "Add item") : null
    }

&lt;/script&gt;</pre>
<p><strong>jQuery version: </strong>(This code can replace any number of &#8220;new item&#8221; text)</p>
<pre class="lang:xhtml decode:true">&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;

&lt;script&gt;
    $(document).ready(function () {

        var spans = document.getElementsByTagName("span");
        for (var i = 0; i &lt; spans.length; i++) {
            if (spans[i].innerHTML == "new item") {
                spans[i].innerHTML = "add item";
                break;
            }
        }

    });

&lt;/script&gt;</pre>
<p>Source: <a href="https://sharepoint.stackexchange.com/questions/193726/sharepoint-2013-designer-changing-text-of-new-item-for-custom-list" target="_blank">sharepoint.stackexchange.com</a></p>
<p>The post <a href="https://blog.binarybits.net/change-new-item-text-sharepoint/">Change new item text in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/change-new-item-text-sharepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: blog.binarybits.net @ 2026-04-23 06:38:31 by W3 Total Cache
-->