12 Posted Topics
Re: What did the poop say to the toilet? Absolutely nothing. Poop can't talk. | |
![]() | Re: You can also just right click and hit "Inspect Element" then click on console when it pops up. This only works for firefox, chrome, and safari, I'm not sure about IE, but there's just a different method of getting to the console in IE. |
![]() | Re: Hah, negative connotation. The original meaning of hacker back in the 1990's was basically a n00b of programming, maliciously or not. |
Okay, I'm trying to use my own php.ini file, so I edit the .htaccess file to look like this: suPHP_ConfigPath /home/u471282391/public_html/ The file is /home/u471282391/public_html/php.ini But when I update the .htaccess file, everywhere I go on my site returns Internal Error 500. The contents of the php.ini file are: post_max_size … | |
Does the human question disappear after you get enough posts or something because I don't see the human check anymore... | |
I'm curious. The first language I learned is a small port to java called "Processing." It's been around a while and it was a fun little language to learn. My question is: How many of you use it? Info at processing.org and examples at openprocessing.org Check it out if you've … | |
![]() | Re: Your code should be: <!doctype html> <script type="text/javascript"> //JS start function give_me_an_alertbox() alert("This is an alert box."); //JS end </script> <a href="javascript: give_me_an_alertbox()">ALERT BOX!</a> Only the colon was taken out. |
Re: It's not your fault, IE uses a lot of different methods, I personally do not like IE because of how many workarounds one would have to code. IE in my opinion is a major fail. Please, for the sake of humankind, don't use IE. | |
Re: A drop down would look something like this if you include a small javascript code... <html> <script type="text/javascript"> var hDropped = false; var cDropped = false; function dropHome() { if (!hDropped) { document.getElementById("dropHome").innerHTML = "<li><a href='#'><span>Sub Menu Item #1</span></li><li><a href='#'><span>Sub Menu Item #2</span></li>"; hDropped = true; } else if (hDropped) … | |
Re: I'm not quite sure just what you're trying to do, but I've used XMLHttpRequest and so maybe this will help. var reader = new XMLHttpRequest(); reader.open("GET", hostpath + "Votes.xml", true); reader.onreadystatechange = function () { if (reader.readyState == 4) { if (reader.status == 200) { var votes = reader.responseText; } … | |
Not sure if this is in the right forum because I didn't really know where else to ask this, but I need some help with my site. Version of apache on my site: 2.2.17 //not sure if this helps people answer my question or not The problem I'm having is … | |
Re: Check out my thread that has my web app jsRequestChat. http://www.daniweb.com/web-development/web-design-html-and-css/threads/427092/online-chat-room Very simple and easy to use chat, running on almost all browsers. |
The End.