PHP Code (33)
JSP Code (6)
ASP Code (5)
CGI Perl Code (3)
JavaScript Code (63)
VB Script Code (20)
Shell Script Code (31)
Python Code (34)
WinRunner Code (1)
HTML DHTML XHTML Code (13)
XML (43)
Scripts_Markup Code AllOther (5) Consider the following markup:
Can you describe why hgroup was dropped and how the markup can be addressed today with an example?
1 2883Is the alt attribute mandatory on img elements? If not, can you describe a scenario where it can be set to an empty value? Does an empty value affect accessibility in any way?
1 2839
create Drop-Down Navigation Menus
snippet to prevent submission of form when certain/any validations got failed
code to create a new window
communication between main window and new windows
what is main difference between array_push and array_pop?
Write a function that takes an array of integers and efficiently calculates and returns the Least Common Multiply in python.
function to combine two or more arrays
can we pass variable in array to traverse it?
Code for using a Hot Key in an ActiveX Control?
How can restrict user to type upto 8 characters in textbox in php?
Given a circular list of integers (when you reach the end of the list you come back to the beginning), what is the most efficient algorithm to find the smallest integer in the list? For example: circular_list = [22, 52, 66, 82, 5, 8, 12, 19].
can everyone explain this code Private Sub DrawRect(rectSource As RECT, lngColour As Long) Line (rectSource.Left, rectSource.Top)-(rectSource.Left, rectSource.Bottom), lngColour Line (rectSource.Left, rectSource.Top)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Left, rectSource.Bottom), lngColour End Sub
how to copy form data between different pages
Code for Adding Scripting Support to an Application?
Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.