Get Child Node Text in Razor Environment
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I was wondering how one would be able to get value from child node? I am using razor in the front end and wanted to search everything displayed in the home page.
Razor
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
JS
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
I looked in the Chrome debugger (figure 1)and can see the value I am trying to search for is in the childnode of the class I am selecting. Not sure how to access it. Appreciate any and all help, thanks.
jquery razor
add a comment |
I was wondering how one would be able to get value from child node? I am using razor in the front end and wanted to search everything displayed in the home page.
Razor
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
JS
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
I looked in the Chrome debugger (figure 1)and can see the value I am trying to search for is in the childnode of the class I am selecting. Not sure how to access it. Appreciate any and all help, thanks.
jquery razor
add a comment |
I was wondering how one would be able to get value from child node? I am using razor in the front end and wanted to search everything displayed in the home page.
Razor
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
JS
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
I looked in the Chrome debugger (figure 1)and can see the value I am trying to search for is in the childnode of the class I am selecting. Not sure how to access it. Appreciate any and all help, thanks.
jquery razor
I was wondering how one would be able to get value from child node? I am using razor in the front end and wanted to search everything displayed in the home page.
Razor
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
JS
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
I looked in the Chrome debugger (figure 1)and can see the value I am trying to search for is in the childnode of the class I am selecting. Not sure how to access it. Appreciate any and all help, thanks.
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
<li class="media dotted">
<img class="mr-3" src="~/images/emp-list/mm.png" alt="">
<div class="media-body d-flex">
<div class="text">
<h5 class="mt-0 mb-1">@Html.DisplayFor(modelItem => item.Firstname) @Html.DisplayFor(modelItem => item.Lastname)</h5>
@Html.DisplayFor(modelItem => item.Title) (<span class="loc">@Html.DisplayFor(modelItem => item.Location.LocationCode)</span>)
</div>
</div>
</li>
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
function search() {
var input = document.getElementsByClassName('mt-0');
var filter = document.getElementById('employeeSearch').value.toUpperCase();
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < input.length; i++) {
var currentElem = input[i];
var currentElemChild = input[i].children[0];
if (currentElemChild.innerHTML.toUpperCase().indexOf(filter) > -1) {
currentElem.style.display = "";
}
else {
currentElem.style.display = "none";
}
}
}
document.getElementById('employeeSearch').addEventListener('keyup', search());
jquery razor
jquery razor
asked Nov 23 '18 at 18:06
kevin chirayathkevin chirayath
459
459
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To access required childnode value:
`var input = document.getElementsByClassName('classname');
for (var i = 0; i < input.length; i++)
{
var currentElem = input[i];
var currentElemChild = input[i].childNodes[0];
currentElemChild.nodeValue
}`
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53451237%2fget-child-node-text-in-razor-environment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To access required childnode value:
`var input = document.getElementsByClassName('classname');
for (var i = 0; i < input.length; i++)
{
var currentElem = input[i];
var currentElemChild = input[i].childNodes[0];
currentElemChild.nodeValue
}`
add a comment |
To access required childnode value:
`var input = document.getElementsByClassName('classname');
for (var i = 0; i < input.length; i++)
{
var currentElem = input[i];
var currentElemChild = input[i].childNodes[0];
currentElemChild.nodeValue
}`
add a comment |
To access required childnode value:
`var input = document.getElementsByClassName('classname');
for (var i = 0; i < input.length; i++)
{
var currentElem = input[i];
var currentElemChild = input[i].childNodes[0];
currentElemChild.nodeValue
}`
To access required childnode value:
`var input = document.getElementsByClassName('classname');
for (var i = 0; i < input.length; i++)
{
var currentElem = input[i];
var currentElemChild = input[i].childNodes[0];
currentElemChild.nodeValue
}`
answered Nov 24 '18 at 23:11
kevin chirayathkevin chirayath
459
459
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53451237%2fget-child-node-text-in-razor-environment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown