jquery set att
$input.attr("attributeName", "attributeValue");
jquery attr
$( some_item ).attr( "id", "some-id" );
// for setting multiple attributes, it's similar to the css() property. However, quotes are not always required for attr()
$( some_item ).attr({
id: "some-id",
// or others.
title: "Opens in a new window",
// attributes which contain dash(-), should be covered in quotes.
"data-value": "internal link"
});
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