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

  1. FugitivePuppeT

    Class/Member function Counter

    function InputRow() { this.currentRow; this.rowCount; } InputRow.prototype.newColumn = function (nColInnerHTML) { var nCol = document.createElement('td'); nCol.innerHTML = nColInnerHTML; this.currentRow.appendChild(nCol); } InputRow.prototype.newRow = function(inputColumns)...
  2. FugitivePuppeT

    Javascript "Animations"

    Okay, i just got rid of any :hover and replaced it with javascript className changes and it runs a TINY bit better, but it still has the problem if i move the cursor at any speed in IE it will skip.
  3. FugitivePuppeT

    Javascript "Animations"

    IE6 aside, i am running this on IE7 which DOES support it on more thank just links, but i dont think that is the issue here. I will try replacing the :hover with a class change or something but i really dont see that helping the situation.
  4. FugitivePuppeT

    Javascript "Animations"

    Pardon my PHP This is the associated CSS style #hover{width:98%; margin-left:1%; margin-right:1%;} #hover:hover{width:100%;margin-left:0%; margin-right:0%;} .post-title-hl{height:40px;font-weight:bold;font-size:16px;padding-left:10px;} This is the highlight function, simple class...
  5. FugitivePuppeT

    Javascript "Animations"

    I am having a problem with my animations in IE, i am developing a web 2.0 application and it works PERFECTLY on Firefox, opera, safari but not IE This is a video detailing the issue, if anyone can shed some light on this subject i would be grateful. http://www.youtube.com/watch?v=xGKq-7Q0PtE i...

Part and Inventory Search

Back
Top