Jump to content

Telemachus

Members
  • Posts

    39
  • Joined

  • Last visited

    Never

About Telemachus

  • Birthday 07/08/1976

Profile Information

  • Gender
    Male
  • Location
    New Britain, CT

Contact Methods

  • Yahoo
    te1emachus

Telemachus's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm hunting down a hosting solution for someone and though they don't need anything overly large transfer-wise just yet (3tb/month is what they have me shooting to start off with for and that's easy enough), they're very concerned about rapid growth and the bandwidth it may require. After reviewing the options and getting some quotes, I see there are two choices, either go with a reliable and realistic host which has monthly limits per plan but provides real tier one bandwidth, or accept the risks inherent in something allegedly unmetered and hope for the best. I know my obvious skepticism toward the latter makes it sound like I've already decided, but I'm too naive on the matter to know if all the dreadful things I've heard about Cogent provided bandwidth, and even worse the companies which offer it and far oversell their true capacity, are true, and/or whether it may not be that bad an option under certain circumstances. Thanks in advance if anybody well versed in the needs of commercial sites has some opinions and/or advice to offer.
  2. My thought would be either using !="none" which would of course mean flipping the block and none, or maybe even just making a specific declaration in the CSS to begin with if you haven't tried that already.
  3. [quote]...I could put together fairly quickly to generate some income[/quote] I may tinker with some things for myself and my friends, but I'm no web designer by [i]far[/i].  Still, IMHO, that right there seems like a total contradiction to me; if you want to draw people to a site, you have to have valuable and preferably unique content which both brings and keeps them there, whether you choose to distribute a product online or just collect on some advertisements, and you'll only get returns on the time and effort you've invested in the project.
  4. You haven't declared it in any way shape or form though, so when the script tries to evaluate it, inside a function at that, it throws an error.
  5. Usually with select menus I've seen that use onchange, the option you set to selected is just a description, at the very least that makes life easier.  IMHO once you've made the basics workable, any extra effort would be better spent on an "Open in new window" checkbox that just changes the location of the current document if it's unchecked, unless for some reason it's absolutely critical to have both windows open at the same time.
  6. Here's one way of keeping track of how long you listen: [url=http://www.netnebulo.hu/loituma_clock.swf]http://www.netnebulo.hu/loituma_clock.swf[/url] Those who don't care for it that much might get some satisfaction out of this: [url=http://www.netnebulo.hu/hagyma.swf]http://www.netnebulo.hu/hagyma.swf[/url]
  7. You have quotes even though you are trying to use a regular expression, could either use the question mark in a string or just use .match(/\?/)
  8. I didn't feel like plodding through all their scripting, but I'd say they are using setInterval to call a function which increments the clip.
  9. That's the whole point of table-layout:fixed, it will stay 40 pixels wide no matter what's inside it.  You'd need to reduce the length of text between spaces to what fits.
  10. There must be a problem with checked_value not being defined, but that part would be outside of the function you posted, if it's there - sometimes it slips the mind.
  11. I'm thinking: [code]methodCell.innerHTML = '<input type="hidden" name="ShippingOptions[]" value="' + regionID + '|' + methodID + '|' + eval(parseFloat(price) > 0 ? parseFloat(actualPrice) : 0) + '" />'[/code] I'm just assuming floating points are involved, actualPrice has been set as a string, and price is a form field value ???
  12. As for the self closing tags, I avoiding answering it because I wasn't sure if there wasn't some obscure (at least to me) method you could use in place of createElement().  I spent some time googling on it last night but didn't find anything, though I did discover document.createElementNS() which seems to only be useful in standards browsers when you use an xhtml-xml DTD, and even that just gave it an xml namespace (hence the NS) without the self-closing; all I got through view selection source was regular html <[i][/i]br> and <[i][/i]input> tags.  IMHO I would say that if even a method which is meant specifically for that standard doesn't generate tags that meet it, the only option would be to use the innerHTML property to use the correct tags inside a string.  What I still can't say is whether it really matters; the page will still validate in its original state.  There are far better people here than I, but for a quicker answer, that's the best information I can give you.
  13. Just flip it around: document.getElementById(elem).appendChild(newBreak);  You could even drop the newBreak and use document.getElementById(elem).appendChild(document.createElement("br"));
  14. The error you're getting is from trying to add document.getElementById(elem) to the line break.
  15. [url=http://www.regnow.com/affiliate.html]regnow.com[/url]?
×
×
  • 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.