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

  1. spicymango

    basic css

    Thanks a lot for your replies. Its # 2 that i am still not sure. .var_planning.two-column .right-column { float:left; margin-left:20px; margin-top:0; width:513px; } .var_planning.two-column .right-column.fullwidth { width:750px; } I think...
  2. spicymango

    basic css

    Hi, I need help understanding this basic CSS code. .var_planning.two-column .right-column { float:left; margin-left:20px; margin-top:0; width:513px; } .var_planning.two-column .right-column.fullwidth { width:750px; } In the above I believe .var_planning.two-column and...
  3. spicymango

    Floating DIV

    Thanks a lot for your replies, I thought I was doing something wrong, or missing something, I guess it is behaving as it should as width is not wide enough.
  4. spicymango

    Floating DIV

    Hi, I have three <div> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <META NAME="Generator" CONTENT="EditPlus"> <META NAME="Author" CONTENT=""> <META NAME="Keywords" CONTENT=""> <META NAME="Description" CONTENT="">...
  5. spicymango

    simppe &lt;DIV&gt; question

    Thanks. I took out the clear it worked. johnwm yopu said "Both nav and navt are set to float left without any clearing element. They will therefore float as far left as they can until they meet a previously floated element, so navt floats to the right edge of nav." What I don't understand is...
  6. spicymango

    simppe &lt;DIV&gt; question

    Hi , I don't understand what I am doing wrong that my left side menues are not appearing on the left side one below other. Thanks <html> <head> <STYLE type=text/css> body { background-color: grey; font-size:14px; font-family:Verdana, Arial, Helvetica, sans-serif; } div#outer {...
  7. spicymango

    page distorted

    Hi, when I go the following site and using fire fox save the web page complete. it save everything (css, js, imaage and page) But when I open the page on my local page it looks little distorted. Even though all the css, images, js get saved in the folder. I don't know why it happens? Any idea...
  8. spicymango

    simple redirect question

    thanks a lot
  9. spicymango

    simple redirect question

    Hi, In the followind code they are redirecting the page using javascript. What I don't understand why they had to put the same URL redirect in the META Tags, why is it necessary? <HTML><HEAD><TITLE></TITLE> <SCRIPT language="JavaScript"> <!-- window.location =...
  10. spicymango

    how to to check for &quot;

    Hi feherke, With your help I am doing the following <script> var french = "àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ'ñ€Æ»«æ'.;-&"; var name = '.;-&kitty 12à"'; var array_of_found_french_characters=name.match(/[àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ'ñ#Æ»«æ".;\-&]/g) string_to_alert='...
  11. spicymango

    suggestion to display swf

    Hi, I have different flash movies that I want to display on my page. Depends on what movie person click. I am doing it by changing the inner html calling the following javascript function. It seems to be working fine. I was wondering if you see any problem with they way I am doing it...
  12. spicymango

    how to to check for &quot;

    Hi, Thanks for your message, your way for sure is better. In my case I need to display what matched in this format \À \& \æ but when I do alert on your I get it like À,&,æ That's why I was looping, is there a way one can customize display, and display it my way
  13. spicymango

    how to to check for &quot;

    I know I should learn regex. But life is more then learning IT stuff and die one day.
  14. spicymango

    how to to check for &quot;

    I don't know regex, plus I also want to get the value that matches so that I can alert it. I was hoping I could add " in my string, but I guess I can not.
  15. spicymango

    how to to check for &quot;

    I am checking to see my string has any of the following characters. The way I am doing it, I can test for all except double quotes ". If I put double quote that beaks my string. I don't know the way around it. <script> var frenchdisplaystring=""; var setFrenchFlag=""; var french =...
  16. spicymango

    div positioning

    Hi, suppose I have text "My address" on my html page. This text appears sometime at 450 from the top sometime 200 from top. I want a div statement to cover that text when someone click on a button. How can I position my div so that it cover text no matter where it appears o the page. I can...
  17. spicymango

    making image clickable only once

    ok i am doing this. I have put my image in a div. and when someone click on image, i change the inner html. It seems to working fine, only thing when I change the inner html image go one line below. <div id="div1"><a href="javascript:formSubmit('Place','Submit Order');"><img...
  18. spicymango

    making image clickable only once

    ok then please tell me how can I disable the he image right now I have <a href="javascript:formSubmit('Place','Submit Order');"><img src="/images/b_PlaceOrder.gif" border=0></a> I wonder if I put my image in a DIV and disable that div in my Javascript function. But can you disable DIV ? I...
  19. spicymango

    making image clickable only once

    right now I have code like this. <a href="javascript:formSubmit('Place','Submit Order');"><img src="/images/b_PlaceOrder.gif" border=0></a> if I change it to following to make image a form element <a href="javascript:formSubmit('Place','Submit Order');"><input type=image id=submitorder...
  20. spicymango

    making image clickable only once

    In my case if I just stop them from clicking twice, it will solve my problem. with out having to put more logic. But if once I disable the image, if the user retrun to that same page again using browser back button that image is still disabled. I want it to be enabled then.

Part and Inventory Search

Back
Top