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. Firebrandbooma

    Multiple popup bubbles using jQuery

    Hello everyone, I'm new to jQuery but have written a fair bit of DOM JavaScript in the last few years. I'm using the following to successfully display a pop up bubble on a page. I got the script from here: http://jqueryfordesigners.com/coda-popup-bubbles/ I would like to display a different...
  2. Firebrandbooma

    Reference material about GoldMine required

    Hello, I'm currently working with various installs of Goldmine, versions 6.6, 6.7 and 9. I've looked unsuccessfully for books about GM on Amazon but can find nothing so I'm thinking there must be some reference material online, outside of this forum. Can anyone recommend anything? Any help...
  3. Firebrandbooma

    Replacing a string in an HTML page using JavaScript

    Thanks. In the mean time I found this and it works: <script type="text/javascript"> var words={ 'Bill':'William','Miss':'Mrs' } var regs=[]; for(arg in words){regs[regs.length]=new RegExp(arg,'g')} window.onload=function replaceText(){ var...
  4. Firebrandbooma

    Replacing a string in an HTML page using JavaScript

    That is usefull, thank you. Although I'm trying to replace a text string throughout an old site that I've inherited. The string in question could be within any number of tags with either class or ID attributes. (It's a mess and I'm looking for a quick qay round whilst I rebuild) I've been...
  5. Firebrandbooma

    Replacing a string in an HTML page using JavaScript

    Hello everyone, Can anyone help me with replacing multiple occurances of a string in an HTML page. I know how to replace a string like this: <script language="javascript"> var str1, str2; str1 = "Scripting JavaScript"; str2 = str1.replace ("JavaScript", "Master"); document.write ("String...

Part and Inventory Search

Back
Top