Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Mugiwara

  1. Mugiwara

    How to hide DIV under another DIV

    Why don't you just hide the container rather than changing its z-index. and use the javascript to show the element you want getElementById("name").style.display = "none"; // hides the element getElementById("name").style.display = "block" // shows the element;
  2. Mugiwara

    MySQL Connection

    Hi all, Connection conn = null; String url = "jdbc:mysql:///mysql12.000webhost.com\\"; String dbName = "example"; String driver = "com.mysql.jdbc.Driver"; String userName = "root"; String password = "root"; try { Class.forName(driver).newInstance()...
  3. Mugiwara

    simple function for a simple man

    Here is some JS that should do the trick <html> <head> <script type="text/javascript"> <!-- //this alternates the display function showhide(name, button) { if(document.getElementById(name).style.display != "none") { document.getElementById(name).style.display =...
  4. Mugiwara

    Space in between table cells

    Do you have the HTML Code for this table?
  5. Mugiwara

    How do I make a link load a div?

    Glad i could help, sorry i forgot to comment on it i can resend a commented one if needed
  6. Mugiwara

    How do I make a link load a div?

    below is an example i wrote of what i think you are looking for, you will need to edit it to fit your own design <html> <head> <style type="text/css"> <!-- .popup { position: absolute ; background-color: #000; opacity: 0.7; display:none; z-index: 100; float:right...
  7. Mugiwara

    How do I make a link load a div?

    is this somthing on the lines of what you where looking for? <html> <head> <style type="text/css"> <!-- #lock { background-color: #000; opacity: 0.7; display:none; width:100%;height:100%;} #container{display:block; width:100%;height:100%; background-color: grey}...
  8. Mugiwara

    How do I make a link load a div?

    Do you mean, you want the lock div to be displayed once the link is clicked?
  9. Mugiwara

    How do I make a link load a div?

    Hello, What content needs to be added within the div once the link button is pressed?

Part and Inventory Search

Back
Top