THIRUVALLUVAR STATUE Thiruvalluvar is the godlike artist of Tamil Nadu and has given to the world Thirukkural. The commemoration statue of Thiruvalluvar is in Kanyakumari. The platform of the statue is of 38 feet stature and the statue over it is 95 feet tall with a stupendous aggregate of 133 feet for the whole figure. The 3 level platform known as Atharapeedam is encompassed by a creative Mandapa known as Alankara Mandapam with 38 feet stature. Encompassing the Alankara Mandapa stand 10 elephant statues meaning 8 headings with earth and space down. The father of Sri. Rama, the legend of Ramayana was called Dasaratha as he could charioteer in ten bearings. To help the vacationers to venerate the heavenly f...
Usually some one checking all the radio button(checked or not) one by one and get the selected radio button value. But we can get the radio button value in a single line using jquery. Example asp Radio button <asp:RadioButtonList ID="Rbtn_ModeSetBy" runat="server"> <asp:ListItem Value="0">All Employees</asp:ListItem> <asp:ListItem Value="1">Grade</asp:ListItem> <asp:ListItem Value="2">Job Title</asp:ListItem> <asp:ListItem Value="3">Employment Status</asp:ListItem> </asp:RadioButtonList> jQuery Code var val =$('[id*="<%=Rbtn_ModeSetBy.ClientID%>"]').find('input:checked').val();
In javascript we can easy to convert any numbers to corespoinding hexadecimal, octal or binary value using toString() method. Syntax variable.toString() //convert to String variable.toString(2) //convert to Binary variable.toString(8) //convert to Octal variable.toString(16) //convert to Hexadecimal Example var num=66; num.toString(); //return "66" num.toString(2); //return "1000010" num.toString(8); //return "102" num.toString(16); //return "42" Example Program:- (Editor) Editor is Loading... Output:- Advertisement
Nhận xét
Đăng nhận xét