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 gkittelson 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: jamesBurton
  • Order by date
  1. jamesBurton

    Popup -> opener communication

    yes, in your pop up have the code: window.opener.myFunction(); -------------------------------- jb
  2. jamesBurton

    Dynamic Text

    do it by setting the innerHTML property of a html element......make your element on the page, something like <span id=&quot;bidnit&quot;>Initial Content</span> then this javascript in the select box: onChange=&quot;document.all[&quot;bidnit&quot;].innerHTML =...
  3. jamesBurton

    Font color on tablerow onMouseOver

    onMouseOver=&quot;this.style.backgroundColor = '#C0C0C0';this.style.color='#ff0000';&quot; onMouseOut =&quot;this.style.backgroundColor = '#FFFFFF';this.style.color='#000000';&quot; (you need the 'style' bit in the scope there, which isn't in yr script) but if you start altering more than one...
  4. jamesBurton

    The OnClick Events in Dreamweaver's Navigation Bar Script

    You may not think it that helpful, but I'd advise you to make your own...it's not too complex and then you know exactly where the problems (there are always problems) lie. -------------------------------- jb
  5. jamesBurton

    Xforms and dynamic XML

    no, xforms isn't ready yet...you will have to send data to your server side scripts in name=value pairs, but you could always reconfigure them there into an xml document -------------------------------- jb
  6. jamesBurton

    XSL to bold text?

    I may be missing the point but couldn't you use xsl to output the text within b tags...? -------------------------------- jb
  7. jamesBurton

    PhP and XML

    couple of good beginners tutes at devshed - http://ad.doubleclick.net/adi/devshed.dart/smain;sz=728x90;tile=1;ord=639665180? -------------------------------- jb
  8. jamesBurton

    returning search results from a MySQL database

    like this: WHERE comment LIKE '$var'OR company LIKE '$var' -------------------------------- jb
  9. jamesBurton

    returning search results from a MySQL database

    using LIMIT: $result = mysql_query(&quot;SELECT * FROM keyit WHERE comment LIKE '%{$_REQUEST['search']}%' order by company LIMIT 10&quot;); -------------------------------- jb
  10. jamesBurton

    Unknown script error

    Your error points to a call of the function named start on line 269 & it looks like you put this function call at the end of the html so that it's called after the page is loaded - the function refers to an object that doesn't yet exist. On future page loads the object already exists in cache...
  11. jamesBurton

    &lt;BODY onBlur=&quot;self.focus()&quot;&gt; &amp; forms

    I've found a solution to this at http://www.getyourwebsitehere.com/jswb/modwin/modalwinparent.html#code. Basically uses setTimeOut to keep giving the pop up focus except when a form field is being edited. Thanks everyone, -------------------------------- jb
  12. jamesBurton

    &lt;BODY onBlur=&quot;self.focus()&quot;&gt; &amp; forms

    Hi there, I'm the guy onpnt was trying to help out and i'm interested in your ideas, just can't make out how to use them! NEVERSLEEP, I need to gather info from the user in my form and it doesn't look like the function you propose would allow that. I thought of setting a boolean when someone...
  13. jamesBurton

    open new window and keep on top

    travmak's function (when enclosed in script tags) should work fine, but I have the same problem as you in keeping a window on top without using showModalDialog and without simply using onBlur=&quot;self.focus();&quot;.......see my thread thread216-281095 -------------------------------- jb

Part and Inventory Search

Back
Top