Jump to content

wrongmove18

Members
  • Posts

    27
  • Joined

  • Last visited

    Never

About wrongmove18

  • Birthday 11/18/1985

Contact Methods

  • Website URL
    http://wrongmove18.blogspot.com

Profile Information

  • Gender
    Male
  • Location
    Philippines

wrongmove18's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. try this... <?php $contents = file_get_contents("page.htm"); preg_match("/\<title\>(.*)\<\/title\>/i", $contents, $results); echo $results[1]; ?>
  2. a[href$=.pdf] is not supprted by IE6.. please refer to http://www.quirksmode.org/css/selector_attribute.html
  3. wrongmove18

    Weird Gap

    add overflow:hidden; in #cTop
  4. the 2 pages are same for me...
  5. @web_loone_08 it think you need the page completed loaded first...
  6. add this css style to your div style="vertical-align: bottom; display: table-cell;" display: table-cell; makes your div behave like a <td> tag. but sadly IE does not support table-cell.
  7. remove the top and left style
  8. you can use this.. function a(){ var v1 = B.value; if(!v1.match("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$")) alert("Your e-mail address is incorrect"); }
  9. it's impossible to do that. you need to create a div replacing it. go to this site -> http://ajaxload.info/ the drop down has images, maybe you can get an idea in that.
  10. it works for me.. IE and FF
  11. What browser are you using? It works on FF.
  12. What is the version of IE in XP?
  13. Me too.. I don't understand your question. You need to turn ON Javascript. If your just trying to hide/show a div in the website. <div id="DIV_ID"><!--Content here...--></div><button onclick="toggle('DIV_ID');">Toggle DIV</button> <script type="text/javascript"> function toggle(idname){ var d = document.getElementById(idname).style.display; d = (d=="none")?"block":"none"; } </script>
  14. This might help.. <script type="text/javascript"> function create_textbox(container, count){ var cont = document.getElementById(container); // reset container contents cont.innerHTML = ""; for(var i=0; i<count; i++){ var input = document.createElement("input"); input.type = "text"; input.name = "name"+i; cont.appendChild(input); } } </script> <form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>"> <select name="textboxes" onchange="create_textbox('input_container', this.value)"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> </select> <div id="input_container"></div> </form>
  15. Option 1: <center> <div>Content here</div> </center> Option 2: <div style="margin: 0 auto;">Content here</div> In option 2, you need to have a DOCTYPE before your html tag
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.