This article explores to user's requirement is to change the "Add New Item" link text to " Different Link text", so that it will be more meaningful on a list.
Also, you can check out some posts on:
- Microsoft Flow tutorial
- Disable default email for approval workflow in SharePoint 2010 designer
- Bind dropdownlist from SharePoint list in InfoPath 2010
By default the "Add new item" appears like below:
Follow the below steps to change the text:
1. Go to the target page >> Site actions>> Edit Page
2. Insert a CEWP just below the list view web part.
3. Place the cursor in CEWP, Click on "Edit HTML Source" link from HTML Ribbon Item's drop down menu. check fig below:
4. In Content Editor web part enter the script:
<script type="text/javascript">
document.getElementById("idHomePageNewItem").innerHTML="Add New InterviewTracker"
</script>
5. Save the page! see the result in action, it will appear like below:
Also, you can check out some posts on:
- Microsoft Flow tutorial
- Disable default email for approval workflow in SharePoint 2010 designer
- Bind dropdownlist from SharePoint list in InfoPath 2010
By default the "Add new item" appears like below:
Follow the below steps to change the text:
1. Go to the target page >> Site actions>> Edit Page
2. Insert a CEWP just below the list view web part.
3. Place the cursor in CEWP, Click on "Edit HTML Source" link from HTML Ribbon Item's drop down menu. check fig below:
4. In Content Editor web part enter the script:
<script type="text/javascript">
document.getElementById("idHomePageNewItem").innerHTML="Add New InterviewTracker"
</script>
5. Save the page! see the result in action, it will appear like below:

