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!

Recent content by j4606

  1. j4606

    Passing variables By URL parameters

    Hi Guys, I remember a post about passing url parameters to javascript src. For example <script type="text/javascript" src="javascript.js?parameter=value"></script> I forgot how to access the parameter and value? Anyone have an idea of how I can accomplish this? Thanks!
  2. j4606

    How to use navigator.language/browserLanguage

    I've been searching for a way to redirect users to a website with their preferred browsing language. The code seems simple enough. var userLang = (navigator.language) ? navigator.language : navigator.browserLanguage; The above works but when I go into my language options in both ie and...
  3. j4606

    php regex match for email

    Guys, I'm trying to match two instances of an email within a web scraping script. The first sample looks like this: mailto:pers-zeawm-1181125745@mywebsite.org?subject=Aleman%20busca%20mujer%20de%20panama">pers-zeawm-1181125745@mywebsite.org</a> <sup>[<a...
  4. j4606

    xsl Value of w/ namespace question.

    I can't believe I missed that. Thank you.
  5. j4606

    xsl Value of w/ namespace question.

    Hi guys, Im having a problem adding a stylesheet to an xml file. I receive the following format of xml. <?xml version="1.0" encoding="us-ascii"?> <?xml-stylesheet type="text/xsl" href="seminars.xslt"?> <rss version="2.0" xmlns:seminar="http://www.test.com/rss/seminars"> <channel>...
  6. j4606

    HTML emails and print style sheets

    I've been searching for some information on print stylesheets and html emails. I found one link that was usefull but the comment at the bottom threw me off. http://www.campaignmonitor.com/blog/archives/2006/06/can_i_include_a_print_styleshe.html I don't know if I wanna run through...
  7. j4606

    Ajax https request returns blank

    I got an xml httprequest being called over http. It works fine, however one of the pages requires https, when this page is loaded xml returns blank. Firebug tells me I have a response code of 302 found. When I try to hit the .xml file via url ie "https://myurl.com/xmlfile.xml" I get redirected...
  8. j4606

    Editing a Javascript File (Weird synthax)

    that code reminded me of jquery cause jquery uses a javascript compresser. My guess the person who wrote your code also used a compressor. more info -->http://dean.edwards.name/packer/
  9. j4606

    Editing a Javascript File (Weird synthax)

    looks like jquery
  10. j4606

    technical issues with XHTML / HTML

    Thanks Farmcow!
  11. j4606

    google doctype (html, css, javascript reference)

    Pretty cool site, what do you guys think? A lot of good articles makes for some good reading if i ever get downtime at work :P. http://code.google.com/p/doctype/wiki/Welcome?tm=6
  12. j4606

    Height differences between ie and ff.

    Awesome that fixed the display issue for ie6, thanks!
  13. j4606

    Height differences between ie and ff.

    Is it really incomplete though I read that the DTD url was optional? The complete doctype did fix the display differences between ie7 and other browsers except for ie6. IE6 is still being silly and adding exra padding or margin to my divs, I'm sure this bug is documented somewhere I guess I'll...
  14. j4606

    Height differences between ie and ff.

    Nnm problem fixed by switching from. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > to <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> VSS was auto inserting the doctype so i didn't double check it. :<
  15. j4606

    Height differences between ie and ff.

    I noticed changing to xhtml strict fixes the problem but that is not an option atm. :(

Part and Inventory Search

Back
Top