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: spicymango
  • Content: Threads
  • Order by date
  1. 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...
  2. 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="">...
  3. 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 {...
  4. 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...
  5. 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 =...
  6. 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...
  7. 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 =...
  8. 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...
  9. spicymango

    making image clickable only once

    Hi, I have an image on which when user click I submit my form after doing basic javascript validation. I want user not to be able to click once they clicked on the image so that they don't submit it twice. Right now I disable the image once they click it. I was wondering is there any other way...
  10. spicymango

    validation code

    I need to put a validation code that allow only Letter, Numbers abd spaces. I have the following code that allows only Letter and numbers. but not spaces, how can I make it so it allow spaces as well? Thanks <script type="text/javascript"> function alphanumeric(alphane) { var numaric =...
  11. spicymango

    images in the database

    Hi, Is it possible to have images in the databse, and also pdfs? Thanks
  12. spicymango

    how to include page content

    Hi, I have a html page on a domain abc.com. In it I have a table. Page A <html> <body> <table border=0 cellpadding=0 cellspacing=0 width 550 height=400> //include the page B from domain xyz.com </table> </body> </html> I have another page on a different domain xyz.com that page has code...
  13. spicymango

    Simple cookie question

    Following code set the cookie, with out DOMAIN cookiestring="startin="+where+";PATH=/;EXPIRES="+getExpire(12000); But when I do the following, i only added DOMAIN var domain=".visitor"; cookiestring="startin="+where+";PATH=/;DOMAIN="+domain+";EXPIRES="+getExpire(12000); It does not, what...
  14. spicymango

    proxy setting

    I have found out what the proxy settings are in my browser. Now my JSP code can not access the internet, I get connection problem message. I been told I will need to set the proxy setting for my server. I don't know in what file I need to put the entry for proxy and what will be the format...
  15. spicymango

    http get stream command

    Hi, On my website page is it possible to get a content from some other website page? I do not want to use iframe. I been told in JSP there is some http get stream command or function that let you pull content from from some other website file into your page? Not sure how will it work.
  16. spicymango

    javascript character issue

    I have javascript code like the following. I am using Apache/UNIX CASE 1 if (document.formDetails.first_name.value=="" || document.formDetails.first_name.value=="*Prénom") { errmessage = errmessage + " -prénom"; } when this file go to one of the unix box it look like the following if...
  17. spicymango

    showing DIV statements while downloading

    Hi, I want to display a message like "In Progress" while my page is still loading. I am trying to achieve it by displaying a DIV, and then hidding it. My code is below. These images gets downloaded fast so hard to tell and test, but based on my logic you see any problem with this? <html>...
  18. spicymango

    simple browser question

    I a doing somethin like following. I tested my code on IE, FireFox, Netscape, it works. Is there any major browser that does not support div and style.display <div id="setname" style="DISPLAY: block" align="center"> document.getElementById('setname').style.display = 'none'...
  19. spicymango

    code to detect Safari

    is there a javascript code that will tell me if the user is using Safari MAC browser or not. I found the code that tell me about IE, FireFox, OPera ...but not Safari
  20. spicymango

    can i read bookmarks using javascript

    Is there a way to read bookmarks or favourites using javascript. I am looking for code that reads both in IE and Firefox, I could not find on google

Part and Inventory Search

Back
Top