Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: zeert2002
  • Content: Threads
  • Order by date
  1. zeert2002

    Date format

    Hi how would I get this time format in javascript? This format was from Java: "2008-05-09T16:39:00.603-07:00" Any help is greatly appreciated.
  2. zeert2002

    XSD question

    Hi, I have a question regarding XSD. I have this format in my xsd: <xs:element name="someName"> <xs:complexType> <xs:sequence> <xs:element ref="id"/> <xs:element ref="firstName"/> <xs:element ref="lastName"/> </xs:sequence> </xs:complexType> </xs:element> So this...
  3. zeert2002

    Get text node

    Hi, I'm trying to achieve the effect that most browsers except for Safari removed. I'm trying to grab the actual text node when a user click on a text inside an html page. function getNode(ev) { //When a user clicks on a text, IE and FF will print out '1', while it's supposed to be '3'...
  4. zeert2002

    Need help with max

    Hi I need help with the max function. How do I get the max of the queries result in sql? my query is: select val from table where id in(3,4); It will give me two values. From this what should I add so that it will give me only 1 value and that value is the max of the two? Thanks.
  5. zeert2002

    XSD

    Hi, can anybody help me with this xsd rule? I have this rule in my xsd file: <xs:element name="id" type="xs:long"/> In my xml file, this is not acceptable because it says '' is not an integer: <id></id> Is there a way in to specify a xsd rule to allow empty content? Thanks
  6. zeert2002

    Session

    Hi, I'm currently trying to test my jsp page. Does anybody know if it's possible to insert information into the server session with a client side application and the server will then use that information to process as if it has been called by request.setAttribute in a servlet? Thanks.
  7. zeert2002

    Reload function

    Hi, I really need help with this weird problem with the reload function. I'm trying to reload a page if that page is visited. Here is my code: if(window.name=="TEST"){ window.name=""; } else{ window.name="TEST"; javascript:location.reload(true); } My problem is this. In firefox, it works...

Part and Inventory Search

Back
Top