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 Mike Lewis 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: sanshizi
  • Order by date
  1. sanshizi

    javascript browser content code accelaration, mission impossible??

    x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; add 0 e.g. Correct x1=.1; ---> x1=0.1; Correct them all finally code like this my test code below <a href="javascript:R=0; x1=0.1; y1=0.05; x2=0.25; y2=0.24; x3=1.6; y3=0.24; x4=300; y4=200; x5=300; y5=200; DI= document.images...
  2. sanshizi

    redirect issue in FirFox

    //try this <script language="JavaScript"> function chk() { window.location='http://www.natradersonline.com/testpage2.shtml'; } </script>
  3. sanshizi

    Pass form as argument into its submit event handler

    my test code here (in IE 7), it running good <script type="text/javascript" src="jquery.js"></script> <form name="form1" id="form1"> <input type="submit" value="gaga" /> </form> <form name="form2" id="form2"> <input type="submit" value="gaga" /> </form> <script> function...
  4. sanshizi

    simple cookie path question

    here are some great code i used function SetCookie(cookieName, cookieValue, path, domain, secure){ var expires = new Date(); expires.setTime(expires.getTime() + 100000000); document.cookie = escape(cookieName) + '=' + escape(cookieValue) + (expires ? '; expires=' + expires.toGMTString() ...

Part and Inventory Search

Back
Top