User Profile

Collapse

Profile Sidebar

Collapse
abcdriver
abcdriver
Last Activity: Aug 26 '09, 06:17 PM
Joined: Aug 10 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • abcdriver
    replied to Multiple tables - CSS
    _______________ _______________ _______________ _______________ ____
    Up up
    See more | Go to post

    Leave a comment:


  • abcdriver
    replied to Multiple tables - CSS
    Could would show me how can I use the selector please?
    I want to exclude the first table.

    HTML Page:
    Code:
    <html>
    <body>
    
    <p>
    Each table starts with a table tag. 
    Each table row starts with a tr tag.
    Each table data starts with a td tag.
    </p>
    
    <h4>One column:</h4>
    <table border="1">
    <tr>
    ...
    See more | Go to post

    Leave a comment:


  • abcdriver
    started a topic Multiple tables - CSS

    Multiple tables - CSS

    I have in my html pages 10 tables and I define some characteristics of those tables in a css file. How can I EXCLUDE one of the table from that css (I just want a simple table, but the remaining 9 tables must take the attributes from the css )

    The code for the tables look something like this:

    Code:
    <style type="text/css">
    <!--
    table{
        border-spacing: 0px;
        border-collapse: collapse;
    ...
    See more | Go to post

  • abcdriver
    replied to "Missing name after . operator "
    Now is not working in Firefox, but in Internet Explorer is working. HAHAHA
    See more | Go to post

    Leave a comment:


  • abcdriver
    replied to "Missing name after . operator "
    So instead of
    Code:
    <form name="return"
    document.return.submit();
    I should use

    Code:
    <form name="blabla"
    document.blabla.submit();

    Is not working. :(
    See more | Go to post

    Leave a comment:


  • abcdriver
    started a topic "Missing name after . operator "

    "Missing name after . operator "

    Code:
    <form name="return" method="post" action="a.jsp">
                <input type="hidden" name="name" value="bb">
             
            </form>
            <script language="JavaScript" type="text/javascript">
                document.return.submit();
            </script>

    The code makes an auto-submit form....
    See more | Go to post

  • What submit button was pressed? Same form, another page (JSP)!

    Later edit:

    Too complex:

    The only thing I should know is:
    The submit button's NAME (and value) will only be sent if that particular button was used to submit the form, so you should be able to check that in the server side script.

    Rest is history:


    Hello to everybody. I'm new in everything and I need your help.

    How can I checked what submit button was pressed?
    ...
    See more | Go to post
No activity results to display
Show More
Working...