Sunday, 8 October 2017

Access jquery function button click event based on name property

$(function() {
    $("input[name = 'xyz']").css("border","2px solid red");
})
http://jsfiddle.net/LnFcv/2/

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...