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 SkipVought 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: *

  1. dismayldream

    Passing 'event' argument to addEventListener()

    I'm trying to bind an event argument to an anonymous function that encapsulates a call to class method that requires access to the event object. The problem is if I place the word 'event' or 'e' in the anonymous function that wraps my class method call - the JS just errors citing e/event as...
  2. dismayldream

    IE7 Mutation Event Support?

    Does anyone know if IE7 supports mutation events, and if so which ones? (if it does; some samples of adding a mutation event listener in IE7 would be great!) Thanks
  3. dismayldream

    CSS Tooltip Z Order with Floated Elements

    For any that are interested - I resolved the issue. It turns out to be a cyclical firing of the onmousemove, onmouseover event in firefox. The fix was to wire in event listeners, and determine if the mouse pointer was over the element raising the tooltip. The working code (with comments) is...
  4. dismayldream

    CSS Tooltip Z Order with Floated Elements

    I have a page which contains elements which have all been floated. I also have some javascript which dynamically creates and displays a simple tooltip (code below). However, in Firefox (2.007), the display of the tooltip is flickering (horribly). I've traced this back to the z-index property I...
  5. dismayldream

    Line Breaking Spans with CSS

    That's cool, and it works - but is there any way to get it working with ul/li/span's also? I thought I'd grasped the css 'float' style but obviously not.
  6. dismayldream

    Line Breaking Spans with CSS

    Thanks for your replies. Vragabond: I've tested the <dl><dt> code suggested, but the result is an indented list. Typically, the idea is to replace cumbersome <td><tr> syntax ala: <tr> <td><span ID="myspan">CONTROL NAME:</span><input type="textbox" ID="mycontrol" /></td> </tr> The span's are...
  7. dismayldream

    Line Breaking Spans with CSS

    I am trying to add line breaks via CSS inline styles so as to omit presentational markup from my XHTML document. Basically, I've got a simple block of code like so: <div id="ctl00_MainContentPlaceHolder_OpAdminDisplayCtrl1_UpdatePanel1"> <span...

Part and Inventory Search

Back
Top