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 derfloh 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. ronnie98

    Problem with multiple classes in IE

    Thank you jeff, but adding a doctype didn't bring any benefit,the problem remains. The updated code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>12345 12345 12345 12345 12345 </title> <meta http-equiv="Content-Type"...
  2. ronnie98

    Problem with multiple classes in IE

    Hi all, i have this code <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>12345 12345 12345 12345 12345 </title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> div.firstclass.colorclass{ background-color...
  3. ronnie98

    Need help to fix a layout

    You're right,there seems to be a server problem. I've set a new location: http://ralf57.altervista.org/downloads/layout_to_fix.zip Thanks
  4. ronnie98

    Need help to fix a layout

    Sorry,i forgot the link to the file... Here it is: http://www.sitepoint.com/forums/attachment.php?attachmentid=21533
  5. ronnie98

    Need help to fix a layout

    Hi all, i'm building a new, totally css based, layout for my site but i'm having troubles to have it working.The best results are with Firefox and Opera while in IE it's broken.I need to have all the blocks aligned one to each other with no space (displayed by the yellow color) between and...
  6. ronnie98

    Disable image link after clicking

    Thank you again,now it works as i was expecting.
  7. ronnie98

    Disable image link after clicking

    Thank you tsuj, but the code you provided doesn't seem to work properly. I have many other images/links within the same page and it actually allows only one value to be inserted into the textarea blocking all the other links after the first click. BTW,"uncaught exception" errors are shown in...
  8. ronnie98

    Disable image link after clicking

    Hi all, i've searched this forum before posting but didn't find a "clean" solution to my problem. I have an image with a link on it: <a href="#null" onClick="addValue('bold');"><img src="images/myimage.gif" title="Some text" alt="Some text" /></a> which adds the value in a textarea in the same...
  9. ronnie98

    Passing array from parent to iframe

    Thank you again.
  10. ronnie98

    Passing array from parent to iframe

    Thank you tsuji, one last thing: how can i refer to the whole array at once?
  11. ronnie98

    Passing array from parent to iframe

    Hi all, i have a page (main.html) and an iframe loading another page (frame.html). In main.html an array is loaded to replace some variables: arrayname['key_one_name'] = 'First value'; arrayname['key_two_name'] = 'Second value'; and so on... For some reason this array is not loaded into...
  12. ronnie98

    Adding sublevels to foldout menu

    Hi all, i've found this nice foldout menu (click-show-hide menu) at http://gosu.pl/dhtml/mygosumenu.html that you can test it here: http://gosu.pl/demo/mygosumenu/1.3/example2.html and this is the full code: /* * DO NOT REMOVE THIS NOTICE * * PROJECT: mygosuMenu * VERSION: 1.3.3 *...
  13. ronnie98

    While/foreach structure question

    Thank you spookie, this is what i needed. ATB,ronnie
  14. ronnie98

    While/foreach structure question

    Hi all, i have this code $i = 0; while ($i <= 3 ){ $id = $i++; $items = array("a" => "item1", "b" => "item2", "c" => "item3"); foreach ($items as $item) { echo "sometext_".$id."<br />"; } } [/code ] it actually outputs [code] sometext_0 sometext_0 sometext_0 sometext_1...
  15. ronnie98

    Help with array &quot;cleaning&quot;

    Thank you JRSofty, your code helped me to find the solution. ATB,ronnie
  16. ronnie98

    Help with array &quot;cleaning&quot;

    Hi all, i have this array Array ( [0] => . [1] => .. [2] => serverstats.php [3] => phpstats.php [4] => phpstats.php~ [5] => serverstats.php~ ) It retrieves the values by scanning a directory where there are only two files serverstats.php and phpstats.php For some strange(for me) reason it...
  17. ronnie98

    Synthax troubles

    Thank you very much MOrac, it works perfectly now!:) ATB,ronnie.
  18. ronnie98

    Synthax troubles

    Hi all, i have this code: var popupSrc = document.getElementById("f_url").value; var popupTitle = document.getElementById("poptitle").value; html = "<a href=javascript:myPopImage("; html += "'" + popupSrc + "',"; html += "'" + popupTitle + "'"; html += ")>"; where "f_url" and...
  19. ronnie98

    How to add values to a textbox by clicking on images?

    Thank you again, this 2nd version of your code works fine; the entry point issue doesn't really matters,in the end. ATB,ronnie.
  20. ronnie98

    How to add values to a textbox by clicking on images?

    Thank you cLFlaVA, it works fine but it misses 2 things: 1)it actually doesn't allow multiple insertions for the same text so you cannot have: text1,text2,text3,text2,text1,text1,.... but only text1,text2,text3,text4,.... 2)Is it possible to have text insertions on the exact point where the...

Part and Inventory Search

Back
Top