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

  • Users: vicvirk
  • Content: Threads
  • Order by date
  1. vicvirk

    Link within clickable div

    Hi, I have this: <style type="text/css" media="screen"> .myDivClass { width: 500px; height: 100px; border: 1px solid #000; } #divClick, #aClick { display:none; } </style> <script type="text/javascript" langugage="javascript"> // assume jquery-1.4.4 is already loaded...
  2. vicvirk

    Find closest location by postal code

    I'm in Canada (for those of you unfamiliar with this country, our version of a zip-code is called a postal code) One of my clients wants to add a feature where a user enters their postal code and then a lookup is done in a business db that finds the closest location to them - I'm sure you (who...
  3. vicvirk

    WCF Service on Multiple Servers

    I work at an international organization with web servers all over the world. I've successfully developed a WCF Service and am able to call it from my client application when I put it on any individual server. I have been given the task to delpoy this service to multiple servers around the...
  4. vicvirk

    RegEx Required

    I need a regex to mimic the "print pages" option you get int the print dialog box on windows. Each "page" must be exactly 3 digits long and can be a single page or a range of pages (I already have a check in place to ensure the range is valid). Pages do not need to be in any order (except for...
  5. vicvirk

    Add New Row to Table

    This works find in FF and Chrome (PC), but not in IE (I have 7 installed)...IE gives its usual descriptive error: "Uknown Runtime error" on the line highlighted in red... Will it simply not work this way, do I have to use the DOM as outlined on this link (as an example)...
  6. vicvirk

    Add functions onload

    This is something that has me stumped, I have the following table: <table border="1" id="tblNav"> <tr> <td width="130"> <a id="nav_0" href="/home/" >HOME</a> </td> <td width="130"> <div><a id="nav_1" href="/about/">ABOUT</a> </td> <td width="130"> <a id="nav_2"...
  7. vicvirk

    Code Injection Problem

    Hey Everyone, I posted this in the Javascript forum, someone suggested I try here, view the full current discussion at: http://www.tek-tips.com/viewthread.cfm?qid=1549294&page=1 ------------------------ I have a website with JS as the only scripting language used - all the wepages have HTML...
  8. vicvirk

    Code Injection Problem

    I have a website with JS as the only scripting language used - all the wepages have HTML extensions. The server is a LAMP setup, but I am not using any PHP or MYSQL on the site, again all pages are static with NO CMS and no forms. The website itself does not contain any scripting pages (i.e...
  9. vicvirk

    Child Nodes

    how do I set the first "TD" within each "headerRow" to bold using CSS? I'm attaching "{font-weight:bold;}" and have tried to access it by: .headerRow > td:first-child and #container.table.headerRow > td:first-child and tr.headerRow:first-child I know I can just wrap it in...
  10. vicvirk

    Custom Javascript Modal Boxes / or pause script

    I posted this in the VBScript forum but got nowhere, managed to write something that works in javascript, but now I have another issue. We have an application that prompts the user for an input using strReason = prompt('enter reason'); A request came in to replace the text input box with a...
  11. vicvirk

    Detect Window Close

    I have an exsiting web page with 10,000+ lines of code. We are currently in the middle of re-writting in .net, but for the meantime I need to add some functionality to the existing app within the vbscript (client side). Here's what I need: 1. User is on abc.html and clicks a link which...

Part and Inventory Search

Back
Top