Jump to content

eTianbun

Members
  • Posts

    547
  • Joined

  • Last visited

Posts posted by eTianbun

  1. The forum isn't very popular. Stackoverflow really is a good place for answers. Whenever I'm having coding problems it shows up in my searches and usually has the right answers.
    Yeah, stackoverflow.com is a nice place to get answers, i use it too.
  2. It seems like this forum is not doing well on search engines (like google). This forum is one of the top web design/development forum, but You search for something like "js new" and you see other sites and forums, including: stackoverflow.com, but where is: w3schools.invisionzone.com?

  3. It works in opera (10), firefox, IE(8), etc. Yes, target is deprecated, what about the NEW! CSS 3 target property? It should be 'name' and not 'target', but since it can also be used to target, thats still ok tho.

  4. The purpose of the name is that you can open several things in the same window. You can have an external window with a certain name, and every time you specify that name in window.open it will open the URL in the same window, or create it again if it was closed.
    Thats true, if the window already exist, it opens the URI via that window (instead of creating a new one) and thats why the name parameter, serves as target name for that window.
  5. Actually, as far as I can tell, providing a name for the window does absolutely nothing. You cannot access it by that name through any means that I know of.
    You cant access it through any means? Have you tried targeting that same window with its name, via links (<a>)?
  6. Well, i have tried it so many times though, but i hardly see any change(s), except for IE8, when you do something like this:

    <q lang="fr">FRENCH</q>

    Output: «FRENCH»

    <q lang="en">ENGLISH</q>

    Output: "ENGLISH"

  7. Thats not how the lang attribute works. The lang attribute, tells web browsers, search engines, and other marchine, the language of element's content (including attribute's value for web browsers.) If you are exspecting the browser to (for example) translate the english phrase "The Clone" to french "El clone", then you are missing the point. The browser do not translate, it only try its best, to make it look like french (by manipulating it a little). For example, when you use double quotes around a word ("MAN"), the browser will try to make it look like french, by converting double quotes to e.g: guillemets («MAN»). It also helps screen readers, when pronouncing words.

  8. Why do you even want to lock a post? You asked a question, and you got an answer. Note that there are some other members, who wished to ask same question, but because you already did (asked that question), they just use your post to get the answer they needed. Sometimes, after 1 or 2 response(s) to your post, you may get the answer you needed clearly, but what about those who did not get it? They need to ask for more explaination through that same post, instead of creating a NEW topic with same question. Its better, to leaves all posts open (members only)!

  9. Ok, got what you mean now. just give the <input/> an id and target it.ex:

    <input type="text" id="chatbox">$('#chatbox').keydown(/*function goes here!*/)

    EDIT: In the last example you gave, you used </input>. NB: There is NO closing tag for <input> element.

×
×
  • Create New...