select a form by name jquery
var frm = $('form[name="frmSave"]');
select a form by name jquery
var frm = $('form[name="frmSave"]');
jquery select div in div
$("#tab > div > div")
jquery select element with class
$('.classid')
select class with jQuery
// first make sure that jQuery is linked to your site or page
// add it in the <body> section before the closing body tag </body>
// <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
$(".yourClassName");
// you can also use classes that have dashes
$(".your-class-name");
// you can now use the selected element:
// for example to change color
$(".yourClassName").css("color", "red");
// change backgound color
$(".yourClassName").css("backgroud", "blue");
// change text
$(".yourClassName").text("Hey World!!!");
// change link attribute
$(".yourClassName").attr("href", "https://google.com");
// check attributes (href, src, alt etc...)
$(".yourClassName").attr("href");
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us