Search Results

Search found 7959 results on 319 pages for 'firefox 3 5'.

Page 93/319 | < Previous Page | 89 90 91 92 93 94 95 96 97 98 99 100  | Next Page >

  • Are these Mozilla-specific CSS styles doing anything?

    - by DisgruntledGoat
    I'm working with some CSS (from a Joomla template) like this: div#logo { -moz-background-clip: border; -moz-background-inline-policy: continuous; -moz-background-origin: padding; background: transparent url(../images/head.png) no-repeat scroll 0 0; ... } I've looked up some of those -moz- properties and they seem to be assigned their default values, and if I turn them off in Firebug nothing happens visibly. Would there be a reason to add them to a CSS file? Are they for an old version of Firefox perhaps?

    Read the article

  • Change save to file name but from the client

    - by Rhythmic Algorithm
    This question asks about file name the servers sends and the fix was quite simply a content-disposition header in the http response. What I interested in is does anyone know of any way to do this from the client side if the file name is already known? Is there any special javascript to do this for example? A site I have to use but not mine has a FileDownload.aspx but it doesn't send the content-disposition header. I know the filename and would like to be able to create a firefox extensions to use for the poorly coded web site. Thanks

    Read the article

  • best method for creating a universal extention/plugin

    - by rashcroft44
    Hi, I'm looking to create an extension for the leading browsers (firefox, safari and ie). Its rather simple, and I'm looking for the most efficient way to go about this. I need to get the hostname of the current site the user is on, and if it matches a certain parameter(eg, mysite.org), I'll need to append to the link some extra data and refresh to the new link. What is the simplest way to go about this? (I don't want to go in the direction of a bookmarklet - since this would require the user to click. I'd like this to happen automatically) sort of something like this: if(window.location.hostname == 'mysite.org') { location.replace(document.location.href + '/&mystuff=xyz'); } Thanks!

    Read the article

  • How can I call a COM component using JavaScript in Mozilla?

    - by kumar
    I am calling a COM component in IE. Here is the code <object align="left" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" id="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv"> <param name="FileName" value="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv"> <param name="AutoRewind" value="true"> <param name="AutoStart" value="false"> <param name="ClickToPlay" value="true"> <param name="Mute" value="false"> <param name="ShowControls" value="true"> <param name="ShowDisplay" value="true"> <param name="ShowTracker" value="true"> <param name="PlayCount" value="1"> </object> It is working fine in IE, but not in Mozilla Firefox.

    Read the article

  • Background position image overlay (Works in IE, not in Mozilla/Chrome/Safari)

    - by amm229
    Hi all, I am having an issue positioning a background image using the following jquery background position command in Firefox, Google Chrome, and Safari. The code works correctly in IE 8. $('#element).css({ backgroundPosition: 'xpx ypx' }); The x position of the image is calculated dynamically based on window size and the y position is static. The css appears to be modified correctly, however, the background image I am attempting to overlay is absent. See jscript code below: $(window).resize(function () { // image positioning variables var windowwidth = $(window).width(); var imgwidth = $('#imgFluid').width(); var offset = $('#divFluidBlur').offset(); // calculate and implement position blurPositionLeft = (windowwidth - imgwidth) - offset.left; $('#divFluidBlur').css({ backgroundPosition: blurPositionLeft + 'px' + ' 30px' }); // debug: display actual css Background Position of element to text box $("#txtActualBackgroundpos").val(document.getElementById ("divFluidBlur").style.backgroundPosition); Thanks in advance for your help, Andrew

    Read the article

  • How do I do OuterHTML in firefox?

    - by SLC
    Part of my code I get the OuterHTML propery "<LI onclick="TabClicked(this, 'SearchName', 'TabGroup1');">Name " so I can do stuff involing parsing it. There is no OuterHTML property in javascript on firefox though and I can't find an alternative way to get this string. Ideas?

    Read the article

  • iframe height is giving wrong value

    - by user1668527
    I have HTML page which contains line: <iframe id="xyz" width="900" height="250" scrolling="no"..></iframe> From my firefox extension i'm trying to get the iframe height. so i'm registering the browser to a event as follow in my extension: appcontent.addEventListener("DOMContentLoaded",myfunction); where appcontent is browser object, myfunction(event): function { var framelist =window.content.document.getElementsByTagName("iframe"); for(var i=0;i<framelist.length;i++) { if(framelist[i].id == "xyz") var frameheight=framelist[i].height; } } when i tried to load this page intially frameheight gives 250 as per in html page but then it gives 0 as height. What would be the cause for this behaviour. is any other script changing the value of iframe height in between ? Help me

    Read the article

  • How do I "step over" jQuery code while debugging?

    - by Scott Rippey
    While stepping through a script that uses jQuery, I just want to test the code I wrote. I don't want to step into the jQuery file -- I'm not debugging jQuery, just my own file. Are there any ways to tell a debugger to not step into the jQuery file? I use Visual Studio + Internet Explorer, as well as Firefox + Firebug for stepping through code ... and both seem to love to step through dozens of jQuery statements. For example, say I have a script like this: $("div").each(function() { $(this).hide(); }); I would like to press "step into" and not see the implementation of ".each()" etc... In C#, this is possible by using the [DebuggerStepThrough()] attribute on a class. But that doesn't help with JavaScript.

    Read the article

  • Pulling .live() functionality out of jQuery

    - by Daniel
    I am writing a Firefox Add-On that currently is depending on jQuery for the following things: Selectors Animations A special .live("focus") hail-mary event-catching maneuver that happens to work with jQuery 1.4.2 (but not 1.4.4) jQuery isn't well suited for functioning inside XUL, and it's a miracle we've gotten this far with it. We're trying to remove the jQuery requirements, the first two are easy (animations are simple, and we can use .querySelector() instead of jQuery), but the .live has proven impossible to do on our own. I've tried reading the source code, but I haven't been able to piece it apart. What is the jQuery .live function doing? There's clearly a lot more going on than document.addEventListener("focus"/"focusin",function_to_pick_apart_events). What else is going on here?

    Read the article

  • How to get the src for a video with multiple sources?

    - by Sam Dutton
    I'd like to be able to get the src value that is actually used for a video element like the following: <video> <source src="foo.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'> <source src="foo.webm" type='video/webm; codecs="vp8, vorbis"'> <source src="foo.ogv" type='video/ogg; codecs="theora, vorbis"'> </video> In Firefox (at least), src is defined for the source elements but not for the video element. How can I find which source is used?

    Read the article

  • Best way to make a script to SSH?

    - by Paul
    My university has quite a lot files (like past papers etc) which I need to be on the uni network to access them. I ssh, using port forwarding, into the network and set my browser (Firefox) to go through that port. I know it would be quite easy to write something in most languages that would enter the command into a terminal, but which language/method could I use to make this happen? I expect some sort of scripting language could but I really know nothing about them, but I'd be willing to learn one just to have a little fun with this. I'm using a cygwin terminal on Windows 7, if that will make a difference. To neaten up my question: Which language would be best to acheive the above effect? Not necessarily the best, just possible and relatively simple to learn. I used the word best so I suppose I'll put a subjective tag.

    Read the article

  • This code works fine in Chrome, Firefox but not in IE.

    - by Jeddizero
    Hi, I'm trying to make a jquery tooltip that appears when a user mouses over a link. In my case the link is using display:block style so that it covers a large area. It works perfectly in Chrome and Firefox but in Internet Explorer it doesn't work at all. The tooltip doesn't show, the browsers own tooltip shows etc... IE!!!! http://pastebin.com/1kBaMujV Any ideas? Got to love internet explorer...

    Read the article

  • Firefox 23 bêta : partage et navigation simplifiés, le navigateur adopte un nouveau logo pour « une nouvelle ère »

    Firefox 23 bêta : partage et navigation simplifiée le navigateur adopte un nouveau logo pour « une nouvelle ère »Le développement de Firefox 23 se poursuit avec une nouvelle version bêta disponible en téléchargement depuis le site officiel de l'éditeur du navigateur. Quels sont les changements apportés par cette nouvelle version ? D'entrée de jeu, on peut déjà remarquer que le logo de Firefox a subi quelques petits changements. Sur la page officielle, on peut lire le slogan : « Un nouveau logo pour une nouvelle ère » Côté sécurité, une nouvelle fonctionnalité voit le jour. « Mixed content blocking...

    Read the article

  • Firefox : Mozilla travaille sur une version sans onglet pour iPad et sur deux autres projets « de rupture » pour son navigateur

    Firefox : Mozilla travaille sur une version sans onglet pour iPad Et sur deux autres projets « de rupture » pour son navigateur Aussi curieux que cela puisse paraitre, Firefox ? un des navigateurs les plus populaires au monde ? n'est pas présent sur la tablette la plus populaire de la planète. Jusqu'ici, Mozilla expliquait cette absence avec plusieurs arguments... qui semblent aujourd'hui être caduques puisque la fondation annonce qu'elle travaille sur un Firefox pour iPad. Une version qui ne sera pas adaptée de celle pour pour bureau, mais bien une version entièrement ré-imaginée « from scratch ». C'est la toute nouvelle équipe « Product Design and Strategy » de Mozi...

    Read the article

  • Mozilla patche la faille critique de Firefox 3.6 en sortant la version 3.6.2 avec une semaine d'avan

    Mise à jour du 23/03/10 Mozilla patche la faille critique de Firefox 3.6 En sortant la version définitive de la version 3.6.2 avec une semaine d'avance La faille critique de Firefox 3.6 qui avait poussé les institutions allemandes a publier un bulletin d'alerte de sécurité (lire ci-avant) vient d'être patchée par la Fondation Mozilla. Le correctif était déjà prêt mais devait encore être testé par les développeurs du navigateur. C'est aujourd'hui chose faite. Il est livré aujourd'hui avec Firefox 3.6.2 initialement prévu pour la fin du mois. La mise à jour est proposée automatiquement pour les internautes surfan...

    Read the article

  • Le gouvernement allemand appelle à ne plus utiliser Firefox, tant que la vulnérabilité ne sera pas p

    Mise à jour du 22.03.2010 par Katleen Le gouvernement allemand appelle à ne plus utiliser Firefox, tant que la vulnérabilité ne sera pas patchée De la même manière qu'il avait appelé, en janvier, à ne plus utiliser Internet Explorer ; le Bureau Fédéral pour la Sécurité de l'Information allemand a lancé une alerte concernant Firefox. Les citoyens allemands sont en effet appelés à ne plus utiliser Firefox jusqu'à nouvel ordre, c'est à dire tant que la vulnérabilité qui vient d'être découverte (voir news précédente) ne sera pas patchée. La France suivra-t-elle à nouveau l'Allemagne dans cette déclaration préventive ? Une faille critique dans...

    Read the article

  • Why is Firefox changing the color calibration of this image?

    - by eoinoc
    The symptom of my problem is that the same hex color in a PNG image does not match the CSS-defined color defined by the same hex code. This problem only happens in Firefox when gfx.color_management.mode is set to 2 (tagged images only) rather than 0 (off). (Firefox ICC color correction described here). The image is http://dzfk93w6juz0e.cloudfront.net/images/background-top-light.png which at the bottom has the color #c8e8bd. However, the shade of green is different to that color when Firefox color calibration is enabled. Is this image inadvertently "tagged" for color correction?

    Read the article

  • 9 millions de téléchargements perdus par Firefox à cause de l'absence du Ballot Screen dans Windows 7, la part d'IE progresse

    Firefox aurait perdu 9 millions de téléchargements à cause de l'absence du Ballot Screen dans Windows 7 le navigateur baisse tandis qu'IE progresse NetApplications, le cabinet d'analyse du Web vient de publier son traditionnel classement mensuel des parts de marché des navigateurs. Le premier constat est que Firefox enregistre une légère baisse entre octobre et septembre de 0,09 point avec une part de 19,99%, qui lui permet de garder sa deuxième place. Le navigateur qui avait enregistré sur plusieurs mois des pertes semble se stabiliser. En effet, entre février 2011 et juillet 2012, Firefox a perdu plus de 3,7% de part de marché, passant de 23,72 % à moins de 20%.

    Read the article

  • Firefox 4 : la version finale espérée pour fin février, une béta supplémentaire et une RC devraient la précéder

    La version finale de Firefox 4 espérée pour février Une béta et une RC devraient la précéder Mise à jour du 12/01/11 « Nous devons atteindre l'étape de la Release Candidate aussi vite que possible, idéalement nous devrions avoir réglé les gros problèmes début février et sortir la version finale avant fin février ». Voici ce que vient d'écrire Damon Sicore, un des responsable du projet, sur le groupe de discussion des développeurs de Firefox. Il reste actuellement plusieurs problèmes à résoudre (environ 160 « blockers ») qui devraient l'être dans les jours qui viennent. La feuille de route de Firefox 4 verra donc u...

    Read the article

  • Firefox 17 sort avec Social API et permet d'intégrer Facebook, click-to-play et nouveautés pour les développeurs aussi au rendez-vous

    Les développeurs au centre de Firefox 17 ajout d'un panneau de balisages, révisions de la console Web, du débogueur et de l'inspecteur de page Le canal Aurora vient de recevoir la mise à jour Firefox 17, qui permet d'avoir un premier aperçu des nouvelles fonctionnalités et améliorations que le navigateur offrira. Firefox 17 met l'accent sur les outils de développement Web qui s'enrichissent d'un nouveau panneau de balisages pour l'éditeur HTML. Accessible via le raccourci clavier Alt + M (ou Ctrl + M pour les utilisateurs de Mac), ce panneau permet aux développeurs de mieux manipuler le DOM d'une page. [IMG]http://rdonfack.developpez.com/images/markup...

    Read the article

  • Les développeurs au centre de Firefox 17 : ajout d'un panneau de balisages, révisions de la console Web et du débogueur

    Les développeurs au centre de Firefox 17 ajout d'un panneau de balisages, révisions de la console Web, du débogueur et de l'inspecteur de page Le canal Aurora vient de recevoir la mise à jour Firefox 17, qui permet d'avoir un premier aperçu des nouvelles fonctionnalités et améliorations que le navigateur offrira. Firefox 17 met l'accent sur les outils de développement Web qui s'enrichissent d'un nouveau panneau de balisages pour l'éditeur HTML. Accessible via le raccourci clavier Alt + M (ou Ctrl + M pour les utilisateurs de Mac), ce panneau permet aux développeurs de mieux manipuler le DOM d'une page. [IMG]http://rdonfack.developpez.com/images/markup...

    Read the article

< Previous Page | 89 90 91 92 93 94 95 96 97 98 99 100  | Next Page >