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

  1. 210163

    How To Store RSS feed preference

    Thanks! Can I store my preferences in JSON? I have no experience with it, but if I can improve my system I will try to learn it. Could you explain JSON´s benefits over my current system with cookies? Give me an outline of how it could be done?
  2. 210163

    How To Store RSS feed preference

    Hello all! Right now I am trying to implement a function which makes it possibable for my users to save a preference on which news site they want to read news from. Check out: http://www.newspopl.com/ -- the function is not implementede yet, as you might have guessed. I try to store...
  3. 210163

    How to dynamically remove title attribute

    It worked just fine in both IE and FF! I´m going to link to this thread from Bubble Tooltips homepage, as I think this function is quite practical to us JavaScript newbies. Thanks a lot! You must made my day.
  4. 210163

    How to dynamically remove title attribute

    Ahh, this is really nice! Your solution seems easy and beautiful. But I noticed that all the tooltips "stay" disapperead after me unchecking the checkbox. Do you have an idea to retrieve all the title attributes? Many thanks again!
  5. 210163

    How to dynamically remove title attribute

    It´s my tooltip that still is there. I did a check WITHOUT my tooltip - Bubble Tooltips (http://www.web-graphics.com/mtarchive/001717.php) - and then the default tooltip of IE and FF just worked fine (they disappeared)! So I guess the error comes from my combination of Bubble Tooltips and the...
  6. 210163

    How to dynamically remove title attribute

    Hi! I have tried to put this in my <head> tag: <script type="text/javascript"> function removeTooltip() { var anchorTags; anchorTags = document.getElementsByTagName("a"); for(var i = 0; i < anchorTags.length; i++) anchorTags[i].removeAttribute("title"); } </script> And added this to...
  7. 210163

    How to dynamically remove title attribute

    Hi! I´m a newbie to JavaScript programming, and I wonder how to create a function to let a user remove all title attributes of my page´s links. By implementing this funtion I let my users have the opportunity to disable tooltips, which I provide thorugh the title attribute. I have tried this...

Part and Inventory Search

Back
Top