with no content will, on most browsers, merely add a 1-pixel space (and on some, or even with a width=0 and height=0 result in no discernable change to the layout).

That's what I'm trying to codify. Anyone know of such a list? Failing that, care to rattle off a bunch off the top of your head? I suspect if I can get about 25 to 30 equalities, that will suffice for my project.

Many thanks in advance!

Source: http://www.livejournal.com/community/computergeeks/657561.html

  • How to Make your own annotated multimedia Google map

    Date: 04/11/05 (Java Web)    Keywords: browser, google

    A good article from EndGadget explaining creating custom annotated Google Maps. It requires Firefox browser (with Greasemonkey extension) installed. The rest is easy. Link

    Source: http://blog.taragana.com/index.php/archive/how-to-make-your-own-annotated-multimedia-google-map/

  • microsoft internet explorer window

    Date: 04/13/05 (Computer Help)    Keywords: browser

    hi there! unfortunately, i think i may have checked/unchecked a few too many 'option'buttons last night and i noticed something was missing-in my browser window, there is usually a narrow grey bar at the bottom of the window, either above or below the horizontal scroll bar, and inside the bar, it usually tells me an address of a hyperlink when i scroll my mouse over a link. i was just wondering if there was some way i could get this back? any help would be great! thanks again!

    Source: http://www.livejournal.com/community/computer_help/374593.html

  • Firefox draws 2.6 million surfers in March

    Date: 04/13/05 (Web Technology)    Keywords: browser

    Open-source browser continues to lure many Net users, encroaching on IE's dominant market share.

    Source: http://news.zdnet.com/Firefox+draws+2.6+million+surfers+in+March/2100-9588_22-5669690.html?part=rss&tag=feed&subj=zdnn

  • IBM on the hunt for Firefox programmers

    Date: 04/13/05 (Web Technology)    Keywords: software, browser

    Big Blue looks to hire techies to adapt the open-source browser to work well with its server software.

    Source: http://news.zdnet.com/IBM+on+the+hunt+for+Firefox+programmers/2100-9588_22-5669519.html?part=rss&tag=feed&subj=zdnn

  • An interesting quote.

    Date: 04/15/05 (WebDesign)    Keywords: browser, css, html, web, google

    I was just reading this explanation on google maps and thought this quote was interesting:

    "I also think it bears noting that Google is pulling out all the stops to build rich web apps, no matter how weirdly they have to hack the browser to make them go. And I strongly believe that this is a trend that is here to stay -- XHTML Strict/CSS/etc be damned. At the end of the day, what really matters to users is compelling apps that let them get their work done quickly."

    Source: http://www.livejournal.com/community/webdesign/854828.html

  • Firefox Pros and Cons

    Date: 04/15/05 (Mozilla)    Keywords: software, browser, css, security, microsoft, google

    I'm not really looking for an answer in this post, mostly just the community's thoughts.

    The high school that I attend has internet access, like most other high schools now a days, but our computer tech seems to think that Internet Explorer is the browser of choice and won't even consider looking at anything else. He's dependant on Microsoft and can't really think outside of the box. Anyways, he told me that for him to do anything, the district would have to put Firefox (the browser that I'm pushing) on the "aproved software list". I can come up with several key "pros" that Firefox has over IE, but I was wondering if any of you could tell me some that I'm overlooking. Here's what I have:

    - Pop-up blocking
    - Correct CSS rendering
    - Tabbed Browsing
    - Increased stability (has only crashed once on me)
    - Increased security (in respect to its lack of security holes that have plagued IE since forever)
    - Easy access to various search engines
    - Constantly updated to fix security holes
    - Completely free

    If I have any misinformation, I was just led to believe it from whatever source, so sorry about that. I tried mozilla.org for any other differences but couldn't come up with any.

    Also, right before I posted this, I thought I should search google just one last time to pick up anything I might have left off. This site sounds very persuasive. Maybe I should send most of this article or a link to it to the District instead?

    Source: http://www.livejournal.com/community/mozilla/272163.html

  • Mozilla flaws could allow attacks, data access

    Date: 04/18/05 (Security)    Keywords: browser

    Open-source specialist says vulnerabilities affect its namesake suite and the Firefox browser.

    Source: http://news.zdnet.com/Mozilla+flaws+could+allow+attacks%2C+data+access/2100-1009_22-5674883.html?part=rss&tag=feed&subj=zdnn

  • Opera 8

    Date: 04/18/05 (WebDesign)    Keywords: browser

    This wont get nearly as much press as a Firefox point release, but Opera 8 has been released. (it's to be officially annouced tomorrow, but you can download it now)

    I don't care much if you use it or not (I do care a bit, it's hugely underrated), but you designer types might want to download it for testing. To be honest, everyone should give it a go, though I've learnt from experience not to suggest to a Firefox user that there might be something better - they get all scary-like.

    It's just as standards complient as Gecko, arguably moreso, so if you code correctly there shouldn't really be anything to worry about. But as it is a different rendering engine, at least testing in it would be sensible. You really have no excuse.

    p.s. '[info]'opera_browser

    Source: http://www.livejournal.com/community/webdesign/856880.html

  • Opera 8 aims for simpler browsing

    Date: 04/19/05 (Web Technology)    Keywords: browser

    New version of browser aims to attract more first-time users, but can it match Firefox's pizazz?

    Source: http://news.zdnet.com/Opera+8+aims+for+simpler+browsing/2100-9588_22-5676413.html?part=rss&tag=feed&subj=zdnn

  • CGI

    Date: 04/20/05 (PHP Community)    Keywords: php, mysql, browser, html, database, sql

    Hi all,
    I have a program that gets its images from a mysql database. I pass a string to the program that gets the picture inside an HTML image tag like this:

    <*img src=\"show_image.php/thumbnails/$boxData[thum_id]/img.jpg\">

    This is what the string looks like when it has been passed:

    show_image.php/thumbnails/7678/img.jpg

    This is the program show_image.php

    $pic_id = get_pic_id($_SERVER['REQUEST_URI']);
    
    $table_name = get_table_name($_SERVER['REQUEST_URI']);
    
    $file_data = get_file_data($pic_id, $table_name);
    
    header("Content-type: " . $file_data['type']);
    
    echo $file_data['binary_data'];
    


    The functions get_pic_id() and get_table_name() run a regex on the string and return the correct portions of the string that I then pass to get_file_data() and get the binary data.

    I used to get the pic_id and the table_name from the $_GET string, but I wanted to force the browser to cache the images so a friend suggested using this. Thing is he wrote his version in Python which I dont know.

    My question to you all is do you know if this possible and if so where can I get the string from?

    Source: http://www.livejournal.com/community/php/288307.html

  • Centering a Web Page

    Date: 04/20/05 (WebDesign)    Keywords: browser, web

    Ok, I'm wondering if anyone knows how I would center the content of a web page in my browser. I tried changing the left hand margin, but if the browser gets smaller, it means I have to horizontal scroll to see alll of the content. Is there a way of centering so that it moves with the browser size?

    Source: http://www.livejournal.com/community/webdesign/858590.html

  • website

    Date: 04/21/05 (WebDesign)    Keywords: browser, web

    I finally got my website finished enough that I could post it. I didn't try to get fancy with it, I just wanted to present the facts with a little bit of style. As with most of my websites, I am already tired of this one, and have already started redesigning it in my head. Until that happens, I guess I'll leave this one up for a bit. I still need to make a few more tweeks to it, add a few more pieces to the "work" page, and make the "other" page which will contain odd projects and links to other stuff of mine (like photo's and things).

    r2witco.net
    :: r2witco.net ::


    If you guys could take a look at it and give me a little feedback, I would really appreciate it. I've tested it on all major browsers on a Mac, but I haven't seen it on a Windows machine yet. If a couple of you PC users out there could send me a screen shot, I would also be appreciative of that.

    Thanks

    x-posted in '[info]'graphicdesign

    Source: http://www.livejournal.com/community/webdesign/859651.html

  • Unable to 'stopPropagation'

    Date: 04/22/05 (Javascript Community)    Keywords: browser

    I've been trying just about all day to add a 'quick build' function to a page. What I want it to do is to show a little popup div when they click on an image next to a link. The div will have a small form to quickly perform an action which would otherwise have to go through a couple of pages first.

    I've been able to get it to show when the image is clicked, however when I try to make it disappear when the user clicks anywhere else on the page, it makes it disappear even when clicked inside the div. I can't seem to figure out how LiveJournal does it here with "AJAX" comment management.

    The code uses the X Library from cross-browser.com to make it cross-browser compliant. If you haven't heard of it, it basically allows you to call one function and get the same result across different browsers. Any function that begins with x is from that library.

    
    
    
    1. My new free website server

      Date: 04/06/05 (Web Development)    Keywords: browser, web


      i found another free website server and built another free website to go into my link page. But the new site seems to act strange when i go there. Its on its first test flight and i dont even know if it can handle being on a linkpage with the big boys. all the bandwith it takes to keep up with the worlds largest servers and all. anyway id like all of your advice i can get. it seems to be able to serve heavy animations well but it seems to mess with my browser. the new site is at
      http://jeffy.cjb.net/
      and im wondering if anyone thinks it should be a part of the world wide jeffy show or not

      Source: http://www.livejournal.com/community/webdev/186335.html

    2. Bizarre and irritating internet problem

      Date: 04/06/05 (Computer Geeks)    Keywords: browser, web, ebay

      Hi folks,

      I'm having serious problems with the net and it's preventing me from doing my studies. I hope someone knows what's going on here. Whenever I use a website that requires me to enter a password, such as, for example eBay, when I click enter I get the following error message:

      "The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings."

      This not only happens on eBay but many other sites too. Including the site I use to search academic journals.

      Here are some points:

      1) I have used these sites regularly without any problems.
      2) The sites are not connected to each other.
      3) I do have a firewall, etc but I have had them for a long time without any problems.

      Please, someone, help me. If you have any suggestions or ideas I would VERY MUCH like to hear.

      Yours in grovelling,

      Source: http://www.livejournal.com/community/computergeeks/654732.html

    3. Safari is sucking the life out of me

      Date: 04/06/05 (Asp Dot Net)    Keywords: browser, asp, java, web

      I'm having a problem that I hope someone may be able to help with.
      I have some .NET and Javascript code that works in IE, NN, Moz, and Opera BUT it is not working in Safari.


      I have a webform called Input.aspx

      The Input.aspx.vb page in Page_Load has these two lines:
      btnSubmit.Attributes.Add("onClick", "javascript: return Validate(event, this);")
      GetPostBackEventReference(Page)

      The Input.aspx page has a button btnSubmit and some Javascript
      In the javascript I am using a flag called "problem"
      When problem is true I return false from the event which stops the further propagation of the btnSubmit's click.
      When problem is false I
      a. hide a span that encloses btnSubmit
      b. show a span that says, "Processing...Please Wait"
      c. return true

      This works in IE, NN, Mozilla, and Opera.
      The problem is Safari.
      In Safari, it performs a, b, and c, but the btnSubmit Server Side Click event doesn't happen.

      So, I thought, okay I'll just call __doPostBack right after step b. The problem with that is that the Server Side Click happens twice then in IE, NN, etc.

      I can't figure out what the hell Safari is doing (or not doing, really) with the __doPostBack?

      Here is the Javascript in Input.aspx
      //some validating stuff
      //assume that at this point problem is either "true" or "false"
      function Validate(e,r)
      {
      if (problem == "true") // problem, cancel event
      {
      return false;
      e.returnValue = false;
      }
      else // no problem, continue
      {
      // hide button, show processing gif, continue postback
      lbutton.style.display = "none";
      lprocessing.style.display = "inline";
      return true;
      e.returnValue = true;
      }
      }


      All browsers (including Safari) are performing Validate upon btnSubmit onClick event.
      All browsers except Safari are continuing on with the Server Side Click event of btnSubmit after returning from the function Validate().

      Any ideas why Safari just stops?

      Source: http://www.livejournal.com/community/aspdotnet/31454.html

    4. Alright...

      Date: 04/07/05 (WebDesign)    Keywords: browser, html, asp

      I've got a small question. I know I should know the answer to this, but dern if I can't figure it out.

      I've got an ASP.NET page written with C# (code located at http://images.julisana.com/ellie/index.aspx.txt You will have to save it to view the code, otherwise the browser tries to render it and fails miserably) with a form that is supposed to: send an e-mail upon submission. The action element of the form is set to go to submit.aspx (code located at http://images.julisana.com/ellie/submit.aspx.txt Same rules apply for this one too). So, what I want to know is, why will it send the e-mail, but not continue to the next page. Do I need to add a call to my C# scripting that tells it to go to submit.aspx, despite the fact that the action element is set to that? Or what?

      Thanks much!

      Update: Response.Redirect("pagename.html"); was the command I was looking for.

      Source: http://www.livejournal.com/community/webdesign/848112.html

    5. Calling all IE quirks experts and CSS gurus...

      Date: 04/07/05 (WebDesign)    Keywords: browser, css, html

      Got myself a bit of a problem, and it's had the whole office banging our heads on the desk in frustration.

      No matter what we do, we can't make Internet Explorer honour our requests to clear the boxes. If you take a look in Firefox or another CSS compliant browser, it does precisely what it's supposed to - after one box finishes on one side, the next box appears on the other side, as both have clear: left / clear: right (as appropriate), and the text flows straight down the middle, moving where it's supposed to. However, no matter what we do, IE completely ignores the clears, and slaps them next to each other. Suffice to say it's getting rather annoying!

      Anyone got any ideas / workarounds for IE being crap? We've been crawling the 'net to no avail on this one.

      Minimal testcase: http://rick.guysintheknow.com/cssoddities/floatedboxes.html

      Source: http://www.livejournal.com/community/webdesign/847625.html

    6. PHP, mod_rewrite and header() - This is a good one.

      Date: 04/08/05 (PHP Community)    Keywords: php, browser, css, html, web, apache

      I'm trying to use mod_rewrite to intercept all requests made to my web server and route them to a php file (index.php) which then parses the request and does what it can to serve the appropriate page. I'm doing this in an effort to use meaningful URLS as opposed to query strings.

      I have everything about half-working but I can't send headers from index.php, which is important because not only do I need to be able to generate 404 errors, but the files that will be included by index.php need to set their own headers (content-type, content-language).


      These are the lines I'm using in .htaccess for mod_rewrite:

      RewriteEngine on
      RewriteRule index.php$ - [L]
      RewriteRule !\.(jpg|gif|css)$ /index.php [L]

      And this is the code I'm using in index.php that's causing a problem:
      if ($url_array[0] == 'poems') { // POEMS SUBDIRECTORY
      	require('lists.php'); // GET LISTS
      	$get = 'poems';
      	if (array_search($url_array[1], $poem_list)) {
      		$which = $url_array[1];
      		include('get.php');
      	}
      	else {
      		if (!headers_sent()) {
      			header('HTTP/1.1 404 Not Found');
      		}
      	}
      }
      else {
      	if (!headers_sent()) {
      		header('HTTP/1.1 404 Not Found');
      	}
      }

      As you can see, I'm checking to see if headers have been sent before trying to set them, but they don't seem to have been. Whenever I try to set a status header with the syntax HTTP/1.1 XXX (description) an internal server error occurs. I have been able to set status using the header Status: 404, but rather than the standard 404 error page appearing a blank HTML document is served to the browser.

      Apache version is 1.3.19 running on Windows 98. PHP version is 4.2.3 running as a cgi.


      Any help would be much appreciated, I'm pretty far out of my depth with changing the way Apache works.

      Source: http://www.livejournal.com/community/php/281753.html

    7. HTML equalities?

      Date: 04/08/05 (Computer Geeks)    Keywords: browser, html

      I'm trying to come up with a reasonably canonical list of HTML equalities.

      For example, and come to mind.

      Also the similarity between div and span, making note that one is breaking and the other is not.

      Furthermore, in dealing with actual layout, the fact that an extra full-width

    Cranes: x

    Source: http://www.livejournal.com/community/javascript/63791.html

    Previous page  ||  Next page


    antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home