| When we have to work with any control on a web page we need first to find the control. For that we use document.getElementByID or document.getElementByName. But in jquery we do it using Selectors. Using this selectors we can select all the controls as well using a symbol (* ) .Below is the syntax for the same:-
< script language="javascript" type="text/javascript">
$("*").css("border", "9px black");
< /script>
with above code we can set all the border with black and fonr is 9px | | |