Jump to content

Chocolate570

Members
  • Posts

    1,550
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Chocolate570

  1. One of these days, I'm going to ask you what a business plan is. But until then, I'm going to act all cool and say that I own a billion dollar site. Unfortunately, it was before any of you were born, and then google bought it, so I can't show it to you. Sorry. :blink:
  2. In your top function, you haven't defined event. Try passing it through the onclick event of the button.<input type="button" onclick="popup(event)" />Like that.
  3. Chocolate570

    Teamup!

    One of those fools is going to warn your butt in about 5 seconds (Just kidding. )Guys, can we please stay on topic? Justsomeguy, I give you official permission to go make a thread about computer stats. :blink:If he wants to create a forum, let him. There are like 30 different main brands of cars. Most of them don't have better features than eachother. That doesn't stop the brands, does it?
  4. Doesn't work in FireFox :)When I click the button, nothing happens.
  5. By the way, a "unidimensional" array is called a "variable". :)After 1 dimension comes "2 dimensional array" and then "3 dimensional array." There are no prefixes or anything complicated.
  6. Actually, I believe that if you're traveling at the speed of light for 8 minutes, you've reached an infinite distance in relative terms to the person next to you, as all time stops around you.
  7. Welcome guys. Great to meet you all.
  8. Guys, I've got it working pretty well so far. I just need a couple more things.1) When the tree menu page is first opened, you have to double click the links to get them to work. Why!?!?2) How do I make it so that the tree menu doesn't close if the even parent is an a element?For #2, I tried using the script you gave me, Adservio, but that requires the event object to be passed to the function. I have no clue how to do that right now, as the javascript onclick= property doesn't accept function(argument) for some reason, even if it's not text. :|Thanks.Code and treemenu can be found here:seekond.com/treemen.html
  9. If you're returning the value of the field, you'd get "". If you get the innerHTML of the field, then it would be null, I believe.
  10. Guys? On topic please? :/This isn't the World Wide Weather Site Forums. :)We're working harder to keep spam down, and we're doing a pretty good job, but at the end, you guys are the most helpful at sighting spam. So if you do see some, please report it?
  11. We're not that against double posting, as long as it:1) Contributes to the topic and isn't like "LOLZOMGPL0xPOZT?"2) Is meant so that people can notice you have provided more informationIf you want us to delete one of your double posts, just edit your post and put "Please delete this double post." at the bottom. When we come around, we'll remove it.
  12. But I don't believe any of those sites has discovered a way to use CSS to control iFrames, correct?You'll have to learn DOM for what you're trying to do.
  13. Try this page:http://www.ss64.com/nt/It shows all of the command line commands. I don't know about your second question though. :/
  14. Hello,I believe you're using a translator to talk. Please try to form your own English, as translators seriously mess up your language. I can not begin to understand what you need, besides something about what digital camera to buy.Thanks.-Choco
  15. I don't believe the HTML allows that.
  16. His code would still work, as long as you follow this format:<option value="http://url here">Name here</option>
  17. Yea, but you can do the whole iframe thing, so it doesn't matter. :)I've almost got the thing working. I'll post it up when I'm done.
  18. Oh, I'm quite sorry. I read his post wrong. I thought he said that most of the people don't have coldfusion or perl or python, not W3Schools. Thanks for pointing that out. VB makes Excel easier. For example, the other day, I was given a spreadsheet, and I was told to remove all cells where the A column read "rem" or something. Now, it was a 500 row spreadsheet (I know that's not much compared to some of the banking spreadsheets ), so I used VB for it and it worked perfectly. VB is a timesaver, and it's so easy to learn. You don't NEED oil to run a car, but cars usually run smoothly with a little oil (). If you look at what VB was made for, then I'd say it does its job nicely. Vb6 had no compiling. You're right.
  19. Thank you for your effort, but it seems to me that it doesn't work in FireFox. Wierd. I'll investigate that, but the cross browser code is very helpful. Thanks for pointing that out.And Justin, your fix fixed it all up Thanks.
  20. Do you use a lot of excel? Excel is one of the best things Microsoft has ever made. If you ever want to be good at Excel, VB is crucial. Remember that. :)Also, Skemcin: Don't servers need PHP installed? In that case, the only tutorials we should have are HTML, CSS, and Javascript.
  21. They can and have proved the 'spaghetti thing'. :)And he never said it creates electricity. It creates light, in the same way that the sun creates light. :)Space-time is not a funnel. It's a 4-dimensional fabric which can be bent, and with a black hole, broken, which is the 'funnel' shape you see. That is why it's impossible to theorize what's on the other side of a black hole. We don't have enough knowledge about four dimensional physics to come close to figuring it out. A couple of more interesting facts are that black holes have Event Horizons, the point at which nothing can escape, but also the Inner Horizon: where all of the light and matter end up, swirling around. If you ever made it that far in, the light of the inner horizon would immediately blind you, as it would be nonillions of times brighter than the sun.Every galaxy (theoretically) has a black hole in the middle, which is the only reason we have galaxies--because the black holes bring them together.
  22. That's definitely not true. Java often comes with windows installations, if you bought your computer from a company like dell or gateway.And I don't believe there's a way to retrieve the inner network address of a client with JavaScript. Sorry.
  23. I am currently trying to make a tree menu. Unfortunately, my simple code right now (I just started) refuses to work, and I have absolutely no clue why.Could anyone help me with this please? <html><head><script type="text/javascript">function tre_men() { alert("here");}</script></head><body><div class="parent"><div class="header">Testing Stuff Here</div><div class="header">Testing Stuff Here</div><div class="header">Testing Stuff Here</div></div><script type="text/javascript">///////////////////////////////// Organic.Tree.Menu //// Made by Chocolate570 //// Current Version Details //// [0.1 Beta] ///////////////////////////////////Start Menu//////////Attribute Setter//////////divHl=document.getElementsByTagName("div");for(i=0;i<divHl.length;i++) { if(divHl[i].className=="parent") { inDiv=divHl[i].getElementsByTagName("div"); for(j=0;j<inDiv.length;j++) { if(inDiv[j].className=="header") { heHl=inDiv[j]; heHl.onclick="alert('lol')";} } } }////////////////////////////////////</script></body></html> It's supposed to loop through all of the div elements, find a parent div, then loop through that div's elements and check for a menu header div. If it's found it, the function should set the div's onclick to alert, and then go through again.My function works fine, except for the fact that when the div is clicked, nothing happens. :|Thanks.ChocoP.S.: Here's a link to the tryit editor:Tryit EditorThanks.
  24. Or, what you can do is keep all of the pages in seperate divs, and use simple javascript to set the displays of the divs to visible or hidden depending on what link the user clicked.
  25. As Boen Robot says, your results are in kbps, kiloBITS per sec, not kilobytes. I'm talking about megabytes in my poll, not kilobytes. I have 12 megabits per sec, but only 1.5 megabytes per sec. :)Also, the test I linked to was made by the same company as the link you guys are using. :)Here's what I got.It's a bit higher than I expected.
×
×
  • Create New...