After upgrading JQuery 1 to JQuery 3 in our application, some JQuery code stopped working.
I tried looking at https://api.jquery.com/visible-selector/ but could not get help
Previous Code
$("#top_data_label").css("visibility", "visible");
$("#"+element).attr("class", "disable-link").attr("disabled", "disabled");
What changes I need to make in the above code to make it working as per JQuery 3 syntax.