Jump to content

L8V2L

Members
  • Posts

    788
  • Joined

  • Last visited

Everything posted by L8V2L

  1. I agree with what ever this is! More tutorials and examples!!!!
  2. That's the only question they'll never answer. ;-)
  3. Can I alter it with js to make it more than just a storage for data? Can I turn it into an event? Can I assign it a function that will expand it's functionality? Making it more than just a static data storage for holding value?
  4. I read that, I do inform myself, I do my research but I still ask for clarity sake, and understanding.And all they really say is be careful, and to make sure it understandable what's going on. You could simply add an comment explaining what argument in the with statement refer to. I like it(not saying I'll use it in production code.) I like it cause it's part of JavaScript and have an interested behavior of expanding the scope chain environment.
  5. Good point, I did the testing and it came down to the order of which with statement was nested:with(foo){ with(bar){/*foo bar baz*/ }}foo will have presence over the access of the property to reference to it's first, before bar.Here's the actually test://input == I.P.:>var object = {}, obj = {prop0:0,prop1:1, prop2:2, prop3:3, foo:"hi"}; counter = -1;object.__defineGetter__('foo', function() { return ++counter;});with(obj){with(object){console.log(foo+"n"+foo+"n"+foo+"n"+foo+"n"+prop0+"n"+prop1+"n"+prop2+"n"+prop3);}} //output == O.P.:01230123undefined> var object = {}, obj = {prop0:0,prop1:1, prop2:2, prop3:3, foo:"hi"}; counter = -1;object.__defineGetter__('foo', function() { return ++counter;});//input == I.P.:with(object){with(obj){console.log(foo+"n"+foo+"n"+foo+"n"+foo+"n"+prop0+"n"+prop1+"n"+prop2+"n"+prop3);}} //output === O.P.:hihihihi0123undefined
  6. What if I want to transport a shard of a document that is from a large xml file in the databbase, as example:<fooBar> <foo> <bar> Baz </bar> </foo></fooBar>Also with it a xslt.Can I put it straight into the section tag as so? And the xslt will transform it to XHTML?
  7. Thank you for clairty! :-)... Can I alter it with js to make it an event then js a static key value pair?
  8. I just want it in the v8 engine when I start to learn nodejs for server side scripting. There are add on for v8, and you can implement your own add on.And plus I'm just learning the language, I'm a novice at worst, so excuse me if I find that the with statement expand the scope of the object even though it'll cost in most case performance and speed.For small cases, I can't see why it's harmless.Instead of lashing at me, you could inform me(in knowledge me) of ALL the pitfall of the with statement.Answer this question below, after you answer the question above please.What of in a function?Since it'll be confined in a function scope, want that make it be more efficient?
  9. L8V2L

    NoSgl

    After watching that video Mongodb plus the nodejs one, we should totally have them as a w3s tutorial!
  10. L8V2L

    NoSgl

    I don't understand, your link don't work.I copy the link and paste.... I feel like that type in data relay was made for poeple like me... They could have use a comic layout too.FGY JSG!
  11. So in lamen terms, it just away to make your own attribute.(please a yes or no for clarity)Is that all it's go for?
  12. In the link, an Ajax load a HTML table, but it use responseText, not reponseXML. Does this mean that the hold HTML table is in a pair of quote, and being transfer as a string, then place between the div, it automatically parse from the strings? Is that what's going on. And please give a "in your own word explanation" alone with a yes or no to my question.
  13. Can a HTML table be transfer as a strong through Ajax and display as an HTML with out any parsing? Example: http://www.w3schools.com/ajax/tryit.asp?filename=tryajax_databaseCan you explain this to me?
  14. Do you have a small demo of this to showcase visually? Try starting out small and then building up to your requirements.
  15. You might have better luck looking here if this is java we are talking about, and when it comes to sax, that's the only implantation I read of is java with sax: http://www.saxproject.org
  16. L8V2L

    NoSgl

    No~! I want to learn it here, or at least get my feet wet.
  17. It'll be nice to see other programming language. I like w3s shallow approach to teaching; just enough to get the feet wet. It should be easy for w3s to add additional tutorials, just did with what you did for the ones you have, imitate.Please go over tutorial, the errors that you have is not acctepable. They are... Not even novice mistake, just not carefully watch coding or typing.I feel ask that w3s is should a pair of keys to the forum administration personal, since they are the ones that be active with us "users", they can better and faster deal with typo and incorrect grammer, and i.e.Okay that's it! Thank you all for reading! :-) Bye!
  18. L8V2L

    NoSgl

    MONGO! I want mongo.... Mongodb is a noSQL. I think it'll be nice to have a tutorial of it.
  19. With xmlhttprrequest you would add a special id to the URL, ?p="+Math.random();Or you can manage the catch file with HTML storage control API.
  20. L8V2L

    NoSgl

    Cause you have no noSQL.
  21. Start small, use the w3s online xml xslt editor to see result, while also viewing the code side by side. Do a fragment of the xml, and once that is accomplish. Expand it to your desire portion.
  22. Start small, use the w3s online xml xslt editor to see result, while also viewing the code side by side. Do a fragment of the xml, and once that is accomplish. Expand it to your desire portion.
  23. Try CSS. Or go back over the tutorial. Start small with this task, by getting one element to render, ones that is accomplish. Extend it to your needed portion.Link to another post on this subject.http://w3schools.invisionzone.com/index.php?showtopic=8839&page=1entry47686And here:http://w3schools.invisionzone.com/index.php?showtopic=9130&page=1entry49430
  24. What is html data-*? How is it a improvement for js dev? How can one use it?
×
×
  • Create New...