Search results

  1. L

    Do HTML tag attributes cap locks make a difference?

    With an HTML tag, for example <button> if you say <button onclick = "etc... Does it matter if you say: onclick (or) onClick? Do the cap locks matter?
  2. L

    Why is the size attribute for my html select tag not working properly?

    I have a <select> tag with a size attribute. The size attribute is supposed to define how many option elements are displayed at a time. When I set it to 1, I see one element. When I set it to 2, I see all 4 of my elements plus and extended amount of white space where 4 more elements could fit...
  3. L

    What is the difference between an html input field tag of type button and an actual

    button tag? Why are there two ways of creating the button element in html? (Using the <input> tag and the <button> tag?) The reason I ask is because I have two buttons, both with onclick events doing the same thing. The onclick event for the <input> tag element works perfectly, but the onclick...
  4. L

    How do I create sub categories in my html javascript combobox?

    I have created a combobox in my html page which I populated with a JavaScript array. I'll give you an example of my code: in the <script> tags I have: var searchTerm = new Array("Apples","Oranges","Bananas","Green Beans","Asparagus","Kiwi","Pear","Broccoli") function populateCombobox(){ var...
  5. L

    Why won't my HTML page jump links work?

    I created an html page jump link. I did this in the past and it worked great. I took the same code and put it in a new page, and it gives me different results. I want a link at the top of the page to page jump to a topic within the page. I want that topic to display at the top of the page...
  6. L

    Why won't my HTML page jump links work?

    I created an html page jump link. I did this in the past and it worked great. I took the same code and put it in a new page, and it gives me different results. I want a link at the top of the page to page jump to a topic within the page. I want that topic to display at the top of the page...
  7. L

    Why won't my HTML page jump links work?

    I created an html page jump link. I did this in the past and it worked great. I took the same code and put it in a new page, and it gives me different results. I want a link at the top of the page to page jump to a topic within the page. I want that topic to display at the top of the page...
  8. L

    How do I dynamically call an applet from an HTML page?

    I created a Java applet to send email. I have an HTML page the contains the appropriate applet tag and parameters. When I launch the html page, everything runs perfectly! But now I want to change the HTML page to run the applet only on a button onclick...not when the page is loaded. I thought...
  9. L

    How do I dynamically call an applet from an HTML page?

    I created a Java applet to send email. I have an HTML page the contains the appropriate applet tag and parameters. When I launch the html page, everything runs perfectly! But now I want to change the HTML page to run the applet only on a button onclick...not when the page is loaded. I thought...
  10. L

    How do I dynamically call an applet from an HTML page?

    I created a Java applet to send email. I have an HTML page the contains the appropriate applet tag and parameters. When I launch the html page, everything runs perfectly! But now I want to change the HTML page to run the applet only on a button onclick...not when the page is loaded. I thought...
  11. L

    How do I dynamically call an applet from an HTML page?

    I created a Java applet to send email. I have an HTML page the contains the appropriate applet tag and parameters. When I launch the html page, everything runs perfectly! But now I want to change the HTML page to run the applet only on a button onclick...not when the page is loaded. I thought...
  12. L

    Can anyone help me with HTML/JavaScript mailto?

    I have a form on my webpage, created from HTML and JavaScript, that uses mailto so users can send comments/suggestions to my email. I have a couple of questions.First, why is it in the messages I receive I see x/y coordinates? For example, x=38 and y=42, as part of the message? Secondly, using...
  13. L

    How can I determine which HTML element called a JavaScript function?

    I'm trying to create something dynamically... I have a bunch of href tags calling the same function. Each tag has its own ID. When the JavaScript function is called, I want it to perform some task depending on what element called the function. So inside the function I'm going to say something...
  14. L

    How do I make an HTML page link open a new page to a specific location?

    I have an HTML page which has a link...that link opens a new page in a new window. Perfect. But I want to make it so that the new page is not initially displayed from the top of the document...I want it to display at specified locations depending on which link opened it up. My first page has...
  15. L

    How can I create a simple context menu in HTML and JavaScript?

    In an HTML page I just want a simple example of creating a context menu. Just something stupid like right-clicking on a link and making a context menu with the word "Hello" in it. This is not homework...I have a bigger thing I have to do and I searched online but I'm finding a lot of randomness...
  16. L

    How many ppi does the Droid x have?

    The Droid X has a 854 x 480 px screen...but how many ppi is that? I know the Droid has the same px screen (854 x 480)...but does that necessarily mean same ppi? I search online and find wishy washy answers from people that really don't know. Who here officially knows?
  17. L

    How many ppi does the Droid x have?

    The Droid X has a 854 x 480 px screen...but how many ppi is that? I know the Droid has the same px screen (854 x 480)...but does that necessarily mean same ppi? I search online and find wishy washy answers from people that really don't know. Who here officially knows?
  18. L

    How many ppi does the Droid x have?

    The Droid X has a 854 x 480 px screen...but how many ppi is that? I know the Droid has the same px screen (854 x 480)...but does that necessarily mean same ppi? I search online and find wishy washy answers from people that really don't know. Who here officially knows?
  19. L

    Does anyone know simple Python code to manipulate images?

    My goal is to mirror a picture diagonally, starting at the pixel (0,0) axis ((the top left hand corner to the bottom right hand corner)). Right now my code mirrors my picture diagonally from the bottom left hand corner to the top right hand corner. I was thinking that once I got it mirroring...
  20. L

    How do you do this in HTML?

    I need to have a paragraph on my page that I can space different spaces between words and have it save. I know there is an HTML tag that allows you to do that and saves it. For example: I need: <p> I need this paragraph to lo ok like this.... </p> but of course once...
Back
Top