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 TouchToneTommy 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: moham
  • Content: Threads
  • Order by date
  1. moham

    what's wrong with this simple, one line code?

    I have a html page with a link on it: <a href=&quot;javascript:win()&quot;>test</a> The win() function is scripted as follows: function win() { win=window.open(&quot;http://www.yahoo.com&quot;,&quot;win&quot;); } First time I click on the link the window opens. When I close the opened...
  2. moham

    Transparent login using Basic Authorization

    I have users coming from a non-IIS server to an IIS server. They log into the non-IIS server and click on a URL link to the IIS server resource. Only super users can see this link. I want to login these users transparently in the background without forcing them to authenticate again. So what I...
  3. moham

    Basic Authorization over SSL

    I want to authenticate a user in the background with a set userid and password (super user) so that the user does not have to log in manually. Then I want to set the authorization header on the page and redirect the user to a resource on the website that is protected. Is this something that can...
  4. moham

    Locating the index of an array

    How do i locate the index of an array? for example if this is my php page: <?php $ArrayVar = (&quot;a&quot;, &quot;b&quot;, &quot;c&quot;); //this is the array foreach ($ArrayVar) { echo(indexof($ArrayVar)); //need php equiv of &quot;indexof&quot; } ?> I want to see the following output: 0 1 2
  5. moham

    How do I highlight text in a textarea on a form that is being edited?

    How do I select/highlight a single word inside a textarea if I know the location(index) of that word in the string using javascript?
  6. moham

    How to resize and IFRAME without getting an &quot;Access Denied&quot; error?

    I am trying to resize an IFRAME embedded in a html page. The problem is the html page is in one domain and the IFRAME is a separate domain. I know there is the cross domain security that IE5.0 and above implements to restrict cross domain scripting, but it is not like I am trying to read or...
  7. moham

    How do I get the width of a dynamically generated layer?

    I am trying to get the horizontal space occupied by a layer whose innerHTML is set dynamically. I do not set the width since the text varies. thanks

Part and Inventory Search

Back
Top