HTML code for pop up Window?

  • Thread starter Thread starter Jessie C
  • Start date Start date
J

Jessie C

Guest
When you open a link in a named window, there are several other options that are available including window size, position and other options. Research this and list other options. Create an example using some of the possible options, put your answer in the HTML code. i can find is javascript. Its like what is the HTML code for a pop up window?
 
Not sure I can help you directly, but I have some code that might do so:

public class Student
{
public static GPA DoHomework(bool isLazy)
{
if (isLazy)
{
return GPA.Incomplete;
}

ResearchAssignmentProperly();
return GPA.PassingGrade;
}
}

.....I'm sure you can figure out the rest!
 
Back
Top