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 SkipVought 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: Raxg
  • Order by date
  1. Raxg

    Which Events are fired when scrollbar is moved

    Thanks Jemminger for your help. I guess my issue need not have to use "UniversalBrowserWrite" as it was achieved using the other method you mentioned into post. Sorry for late reply but Thanks again :-) Experience teaches slowly and at the cost of mistakes [pipe]
  2. Raxg

    Which Events are fired when scrollbar is moved

    Hi All, Could anyone would tell me which events are fired when a scrollbars are moved. I have come across "onscroll" event of window but that does not help into my issue. I want to make scroll bars invisible. According to scrollbars description it tells that it is read only property...
  3. Raxg

    Unterminated string constant

    Hi Enek, try using like below : var ImgPath = "D:\Projects\Andrews_Kurth\EMAC2002B\Floorplan Manager\photos\" If it works then it is definitely '&' that is creating problem. When a request is passed to server this '&' act as paremeter- value seperator. Hope it will help Experience...
  4. Raxg

    accessing window.opener'd fields

    Hi bombboy, I guess document.formname.fieldname.value should work like document.forms[0].fieldname.value except if you have two objects with same name as your formname on your page. Please verify it. hope it will help [bigcheeks] Experience teaches slowly and at the cost of mistakes [pipe]
  5. Raxg

    Can you use a loop to regenerate a formatted table??

    function checkPage(num_boxes) { for (var cnt=0 ; cnt < num_boxes ; cnt++) { if (document.getElementById(&quot;pageNum&quot;) != null) var _currPage = document.getElementById(&quot;pageNum&quot;).value +1 ; document.write(&quot; Current page No : &quot; + _currPage ); // put the...
  6. Raxg

    Function call from external js file

    Hi Jockm, Please try top.main.location=loc; instead of parent.main.location=loc; into function change of external js file Hope it helps [bigcheeks] Experience teaches slowly and at the cost of mistakes [pipe]
  7. Raxg

    text hovers that control image swaps

    Hi Industriousbird, Try the modified code , hope it will help [bigcheeks] <script language=&quot;JavaScript&quot;> <!-- Hide the script from old browsers -- img0_on = new Image(); img0_on.src=&quot;img/neon_justine.jpg&quot;; img0_off = new Image()...
  8. Raxg

    browser compatability issue (i.e. 6 +)

    Hi Mindeye, I tried your code like below on IE 6.0 and it worked fine <html> <head> <title>try</title> <script> function tryMe() {...
  9. Raxg

    Why anchor tag does not work in table tags

    Hi PriyaG, Could you please send us the section of the code where you are putting achors inside table <td>. I guess that you might be missing some closing html tags that is creating this issue. Please verify code throughly and if you still doesn't find it then send the code. Experience teaches...
  10. Raxg

    syntax error, and nonfunctioning onchange call

    Hi yorkeylady, Please try this if (formname != null) eval(formname + &quot;.filename.value = &quot; + namefile ); instead of eval(formname+&quot;.filename.value = namefile;&quot;); Hope it will help [bigcheeks] Experience teaches slowly and at the cost of mistakes [pipe]
  11. Raxg

    Open popup by clicking the SUBMIT button

    Hi meldrape, I have also tested the code by dookie2k2 but it seems to work fine. I have tested this on windows 2k, IE 5.5 sp2. Could you please tell us about machine configuration. O/S : Browser Name : Version : Please verify code once again, It should work fine [bigcheeks] Experience teaches...
  12. Raxg

    Setting .innerText works fine locally, but not on hosted site...

    It seems to be working fine for me though [bigcheeks]. When ever you click on either of three link it seems to post data into textbox area. However i will suggest that you remove the browser cache and try it once again. My Browser details are IE 5.50.4807.2300 , SP2 Experience teaches slowly...
  13. Raxg

    Checkbox Value Problem

    Hi ThomasE Please try the code below. It should work fine. I have added try catch code just to ensure it does not throw any error message. var nametitle = &quot;&quot;; function showTitle() { try{ if(document.getElementById(&quot;MR&quot;).checked == true) { nametitle = &quot;Mr.&quot...
  14. Raxg

    how to display thumbnails in an iframe

    Hi Latchmere, Please use the modified function below to display the thumbnail using dynamically provided folder name. In the sample code i have hard coded folder name as &quot;A&quot; and Num=&quot;11&quot; but you can pass it as parameter if you wish. Hope this will help [bigcheeks] function...
  15. Raxg

    Change The QueryString

    Hi Arpan, You can use given below function to get the names/value pair of the queryString. Hope it will help. var names = new Array(); var values = new Array(); function value_pair() { //var qryString = &quot;www.abcd.com?status=nonadmin&login=arpan&id=34&quot;; var qryTemp =...
  16. Raxg

    Logon script that directs to page depending on user?

    Hi Waxie, Although your request seems simply straightforward but you need to provide following informations at least : 1. Does it need only two categories of user or these categories also have specific access within their own sections ? 2. Which Technology are you using for dynamic content...
  17. Raxg

    What does this script do?

    Hi Wannalearn, Here is the answer for your query. Hope it might help you. I am enclosing here two sample cases one with correct credit card number and another with your random number that you provided. Hope sample correct credit card number will not be misused ;-).In each cases you can figure...
  18. Raxg

    What does this script do?

    Hey wannaLearn, You are right, it will always alert saying &quot;Invalid Credit Card Number&quot; if you pick any random number. Somehow you got access to the logic that is used by Credit card agencies to check if credit card number is valid or not. Credit card has always a regular pattern that...

Part and Inventory Search

Back
Top