jQuery Selecting children for hover function NO TAG
I have a question regarding how to set a hover function for my custom back to top button. I am translating my website with translate.js which means I very often require live manipulation of the DOM, and such is the case with this problem.
I can do this with CSS but am interested in jQuery due to my will of expanding the functionality and animation further. I have a back to top button that looks like this:
<a id='backtotop-button' href='#top' class='hvr-grow-rotate footerLink trn'>
</a>
I then have a function that sets the correct text depending on language and appends a little arrow of back to top.
$('#backtotop-button').empty();
$('#backtotop-button').append(
`${translator.get('Back to Top ')} <i id='footerLinks6' class='fa fa-arrow-up'></i>`
);
My problem comes when selecting this text that is within no tag, as well as the arrow....
My hover function:
$('#backtotop-button').children().hover(function() {
$(this).css('background-color', '#33A2FB');
}, function() {
$(this).css('background-color', '#FFF');
});
I want to make the text and arrow change to blue on hover basically, but I am getting the whole link area (a square) in blue,
jquery dom children
add a comment |
I have a question regarding how to set a hover function for my custom back to top button. I am translating my website with translate.js which means I very often require live manipulation of the DOM, and such is the case with this problem.
I can do this with CSS but am interested in jQuery due to my will of expanding the functionality and animation further. I have a back to top button that looks like this:
<a id='backtotop-button' href='#top' class='hvr-grow-rotate footerLink trn'>
</a>
I then have a function that sets the correct text depending on language and appends a little arrow of back to top.
$('#backtotop-button').empty();
$('#backtotop-button').append(
`${translator.get('Back to Top ')} <i id='footerLinks6' class='fa fa-arrow-up'></i>`
);
My problem comes when selecting this text that is within no tag, as well as the arrow....
My hover function:
$('#backtotop-button').children().hover(function() {
$(this).css('background-color', '#33A2FB');
}, function() {
$(this).css('background-color', '#FFF');
});
I want to make the text and arrow change to blue on hover basically, but I am getting the whole link area (a square) in blue,
jquery dom children
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
2
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05
add a comment |
I have a question regarding how to set a hover function for my custom back to top button. I am translating my website with translate.js which means I very often require live manipulation of the DOM, and such is the case with this problem.
I can do this with CSS but am interested in jQuery due to my will of expanding the functionality and animation further. I have a back to top button that looks like this:
<a id='backtotop-button' href='#top' class='hvr-grow-rotate footerLink trn'>
</a>
I then have a function that sets the correct text depending on language and appends a little arrow of back to top.
$('#backtotop-button').empty();
$('#backtotop-button').append(
`${translator.get('Back to Top ')} <i id='footerLinks6' class='fa fa-arrow-up'></i>`
);
My problem comes when selecting this text that is within no tag, as well as the arrow....
My hover function:
$('#backtotop-button').children().hover(function() {
$(this).css('background-color', '#33A2FB');
}, function() {
$(this).css('background-color', '#FFF');
});
I want to make the text and arrow change to blue on hover basically, but I am getting the whole link area (a square) in blue,
jquery dom children
I have a question regarding how to set a hover function for my custom back to top button. I am translating my website with translate.js which means I very often require live manipulation of the DOM, and such is the case with this problem.
I can do this with CSS but am interested in jQuery due to my will of expanding the functionality and animation further. I have a back to top button that looks like this:
<a id='backtotop-button' href='#top' class='hvr-grow-rotate footerLink trn'>
</a>
I then have a function that sets the correct text depending on language and appends a little arrow of back to top.
$('#backtotop-button').empty();
$('#backtotop-button').append(
`${translator.get('Back to Top ')} <i id='footerLinks6' class='fa fa-arrow-up'></i>`
);
My problem comes when selecting this text that is within no tag, as well as the arrow....
My hover function:
$('#backtotop-button').children().hover(function() {
$(this).css('background-color', '#33A2FB');
}, function() {
$(this).css('background-color', '#FFF');
});
I want to make the text and arrow change to blue on hover basically, but I am getting the whole link area (a square) in blue,
jquery dom children
jquery dom children
edited Jan 2 at 1:51
Josep Jesus Bigorra Algaba
asked Jan 2 at 0:48
Josep Jesus Bigorra AlgabaJosep Jesus Bigorra Algaba
10211
10211
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
2
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05
add a comment |
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
2
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
2
2
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05
add a comment |
0
active
oldest
votes
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%2f54000111%2fjquery-selecting-children-for-hover-function-no-tag%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f54000111%2fjquery-selecting-children-for-hover-function-no-tag%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
testable example in jjba.ddnsking.com
– Josep Jesus Bigorra Algaba
Jan 2 at 0:49
2
It is not clear what is your current problem, can you share with us more information?
– Shidersz
Jan 2 at 1:05