Hi... i make a Jquery function that (for the moment) call a function dinamically and print it with an alert. with firefox, chrome : it works! when i try on IE7 (the first time), it fails. If i reload the page (F5) and retry , it works! o_O
I FINALLY understand why that's happen. In my old website i used the jquery-1.3.2.min.js library. ...
Hi guys
This is the scenario:
I'm developing a dropdown widget in Jquery. I have to say it was simple.
The main problem was to catch when the user clicks outside my widget to make it hide its list. I found this code here:
onClickOutside : function(event, e){
var thisObject = this;
var clickedOutside = true;
// check if the ob...
Hi I use Fidder to test bug fixes directly on non development environments. It allows you to intercept the bogus javascript file and replace it by any other content you specify without needing to deploy any files.
The problem is that I just use this feature from Fiddler, and the interface is not very user friendly (specially if you need...
Hello All,
I've spent a few days with this problem and I can't seem to find a solution anywhere and it's driving me nuts.
I created a web page that loads all of it's content dynamically and for some reason the content gets truncated in IE 7 and 8. It works fine in firefox and opera though.
The content is larger than the size of the wi...
Refining my question little bit this time. :D
I have this function, but instead of opening it in the parent window, I want it to open in a new IE window... and oh "_blank" is not working for me .
function saved() {
str = parent.a.document.abc.text.value;
SER= top.document.open();
SER.write(str);
SER.execCommand();
SER.close(...
Hi guys.
I am trying to animate a div when the user click the button. Each button will move a div to a different amount of pixels. My code works in firefox and chrome but not IE8 (I only test it in IE8 so far). I appreciate it if someone could help me about it.
my jquery
$(document).ready(function(){
function breakline(position) {...
pls compare this pg in FF and IE..
http://mayacove.com/cycle/photos_cycle.html
I had thought it was a z-index problem with IE, but it's not.. if I comment out all this code..
$(document).ready(function() {
$('#photos').cycle({
fx: 'none',
timeout: 0,
next: '#next',
prev: '#prev',
af...
A coworker asked me to help try and fix this, and we are both stumped. This works perfectly in firefox, chrome, and opera, yet sadly it breaks in IE. Here is the page
...
Hello,
Can we use webkit framework developing browser plugin for both IE (On Windows) and Safari (on Mac)?
I am asking on the basis of http://docs.huihoo.com/webkit/WebKit_PluginProgTopic.pdf
Could any one who has experimented with webkit reply ?
Thanks and Regards
Vijayanand
...
I'm using a DIV as a simple DHTML graphical button on a webpage. It contains no text, and a background image provides the button's appearance. This works perfectly in Firefox and Chrome, but in IE, when the button is clicked a blinking vertical text cursor shows up, presumably where the text line would start. How do I disable this?
I've...
Note: This relates to a previous question.
I have a Wicket page that has a form with some complex client-side interactions that I decided to use jQuery for instead of Wicket (long discussion, I know). Essentially I'm just building a JSON object, submitting it via AJAX, and performing some action on completion. The call works fine in Fir...
i want create a html editor for commericall,and dont want use other free editor even (free license)
about 98% of this project is completed,but i have a problem,
i use a div tag for listing font name when client click on the change
font bottom this div tag will be showed,but selected value in inlineiframe missed when this click occured,
...
I have an application that can be passed parameters by supplying a local file containing the parameters on its command line. We also have an ASP.NET web application that can return out applications parameter file. We would like the end user to be able to click on a link to an ASP.NET page that generates the parameter file and have IE dow...
Hello I am trying to get the options from a html select element. The logic I am using is working in firefox, but it isn't working in IE. It gives me the length of the options array or the number of options but it isn't giving me the values of options. How do I troubleshoot this issue??
var SelectId= 'select_1'; //id of the html select e...
I'm trying to work with a windows mobile 6.1 device running IEMobile 7.11 and I'm trying to load external javascript as such:
<html>
<head>
<script type="text/javascript" src="js/alert.js"></script>
</head>
<body><?php echo('<pre>'); print_r($_SERVER); echo('</pre>'); ?></body>
</html>
alert.js looks like this:
alert('this is include...
I want to have an equivalent of NPAPI plugin for Firefox (or just any other sane browser).
Generally I need IE to start my own program in response to object tag and let it
draw the content itself.
Where do I start?
I tried to look it up on MSDN
http://msdn.microsoft.com/en-us/library/aa902517.aspx
but could not find anything suitable...
I'm automating an Internet Explorer window using the IWebBrowser API. Is there a way to cancel all outstanding HTTP requests in IE/IWebbrowser?
I've tried the following and none of them work.
Calling IWebBrowser::Stop(). This only cancels navigation and does not stop existing downloads from continuing.
Navigating to 'about:blank'. ...
I have set my Internet Explorer proxy using the following code.
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", true);
RegKey.SetValue("ProxyServer", "proxyserver");
RegKey.SetValue("ProxyEnable", 1);
RegKey.SetValue("ProxyOverrid...
I am trying to setup a checkbox that checks all the child checkboxes, like a tree view. The following codes works great in Firefox and Chrome but in IE, it takes two clicks to get it to work. What am I missing?
HTML
<input type="checkbox" name="org" value="orgs" id="orgs" />
<label for="All">Organizations</label>
<ul id="orglist">
...
Hello,
Setting the style attribute to elements is not working in IE 6/7 . But in other browsers, it works well.
The code i am using is
var box_style = 'width: 200px; background:red';
document.getElementById('box').setAttribute("style", box_style);
This works in all other browsers except IE 6/7
Am i doing anything wrong ? or is t...