How to select an element with its name attribute in jQuery
To select an element with its name attribute in jQuery you can use the snippet below. Samples Javascript Sample $('div[name="de.Fesslersoft.Testname"]').css({"border-color": "#000000", "border-width":"15px", "border-style":"solid"}); if you remove the div in div[name=”de.Fesslersoft.Testname”]…