JQuery :: Bug In IE-8 And Windows 7?

Jun 10, 2011

I have a webpage that works on IE-9, IE-8 /Windows XP, firefox, safari, chrome.But the one place it does not work is on IE-8 / Windows 7. Now I did put in code to redirect people who have this combination to a page that says "download IE-9". But then my clients said that this was not acceptable - they want to fix the problem.[URL]...

View 2 Replies


ADVERTISEMENT

Open Windows Under Current Windows?

Apr 6, 2010

below is clickunder code , but it open under windows when visitor click everywhere on the pagei need it be speacial for links , whenever visitor click on speacial link , it opens windows

<SCRIPT LANGUAGE="Javascript">
function PopShow3() {
CookieTest=navigator.cookieEnabled; if(CookieTest)

[code]....

View 5 Replies View Related

Child Windows Can Not Access Window.opener When Multiple Child Windows Are Open

Jul 23, 2005

I have a parent window that pushes a new window object onto an Array
with the following code :

OpenChild()
{

//totalNumWindowsCreated is global

totalNumWindowsCreated = totalNumWindowsCreated + 1;
childWnds.push(window.open(link, "child" +
totalNumWindowsCreated,"dependent"));

..
..
..
}

This pops up a new window with every call. In the child window I call
a parent function onbeforeunload, appClose() :

function appClose(){

if (window.opener && !window.opener.closed){
window.opener.CloseChild(getQueryString("application"));
}}

This is in my frameset tag of the child code :

<frameset ... onbeforeUnload='appClose()'>

The window.opener.CloseChild() function is called perfectly when I have
one child window open, but as soon as I create another child window
both of the open child windows don't ever call it. They do both go
into the onbeforeunload appClose() function, but do not call the
window.opener.CloseChild() function inside of this routine.

Anyone have any ideas why when I have two child windows open I can't
access the window.opener functions?

I have tried taking each new window out of the array and used the
following code in CloseChild() :

CloseChild()
{

//win and totalNumWindowsCreated are both global

totalNumWindowsCreated = totalNumWindowsCreated + 1;
var win = window.open(link, "child" +
totalNumWindowsCreated,"dependent");

..
..
..
}

View 1 Replies View Related

JQuery :: Windows Scrolling DIV?

Jun 24, 2009

If you look at the Apple Store they have option when configuring a Mac, and as you scroll down the page the configuration and price of your mac follows you down the page.Iver at my portfolio site I would like to have a small selection of links do this same effect using jQuery, can anyone suggest how I may do this? I am very new to jQuery and don't really know where to start. Here's a link to the page I would like to add this effect to: ttp://daniel-groves.co.uk/portfolio/

View 3 Replies View Related

JQuery :: Media Plugin Windows 7

Mar 22, 2011

I have recently found out that some of my implementation with the jquery media plugin from 'URL...' fails on windows 7. Everything still works on Vista.URL...Click on video in the right side, then on a image thumbnail.

View 11 Replies View Related

JQuery :: Downloaded The Dev Edition Of Windows 8?

Sep 15, 2011

I don't know if anyone here has downloaded the dev edition of windows 8 yet (it was released last night 5:00p, est)I am trying to get jquery to work, but it just wont... I tried simple stuff, but I was hoping someone here knew how.

View 2 Replies View Related

JQuery :: Calling Windows Folder Browser?

Sep 16, 2011

I'd like to call windows folder browse from jQuery... Or is there a plugin that could work similar with .dialog()'s API?

View 1 Replies View Related

JQuery :: Slide-up Menu Like Windows Startmenu?

Dec 1, 2010

im looking for a (jquery plugin based) menu, which does not drop down like common <ul>-<li>-menus, but get pulled up like the windows startmenu (starts from bottom, slides up).i want to fix this multi-level menu bar to the bottom of the "viewport" (position: fixed;)i googled for hours but did not found a implementation nowhere...

View 2 Replies View Related

JQuery :: Windows 8 Tile Type Interface?

Sep 14, 2011

im not new to jquery but have limited skills. I wonder if anyone has seen any plugins or sites that have a similar interface to the new windows 8 interface...or indeed that windows phone. Interested in building a tile based site.

View 2 Replies View Related

JQuery :: Movable Mini Windows In Side A Page?

Oct 9, 2011

i need to place some contents in movable windows in page.if available can i use this coding in my page?

View 1 Replies View Related

JQuery :: Windows.open An Another Page Or A Form In Popup

Nov 12, 2010

I want to know if I can open an another page or a form in popup using jquery?

View 1 Replies View Related

JQuery :: Unable To Manage Opened Children Windows

Aug 3, 2011

I am trying to modify with jQuery the content of a child window but for an unknown reason it does not work. I would be gratefull if someone may explain what (how) happend. Here is my code:

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// Open a new window with a bare html file
var newWindow = window.open
[Code]....

What I expect (you should already have understood) is a new div to be appended to my child window body. The div (and its text) is effectively inserted (in new child's window) but then disappears in the process. Once I look at the generated code, the div is not in child's DOM.

View 4 Replies View Related

JQuery :: Create Little Windows That Aren't Entire New Pop Up Pages?

Jul 6, 2011

I've recently begun this week going through tutorials to learn some jQuery. My whole motivation was to create little windows that aren't entire new pop up pages. Think of being on facebook, going through some pictures and clicking the "Share" button. It's a new window that pops up but not an entirely new page if that makes sense.Unfortunately the w3schools tutorial didn't really point me in a direction to be able to do this. Any ideas on where to learn it?My real intentions are to learn how to do something like the pop up that you see when you first load this page:

View 1 Replies View Related

JQuery :: Jcookie : Unable To Restore Content Across Different Browser Windows

Nov 12, 2011

I am using jcookie to store certain information (user cart) and the idea is to re display the contents of the cart when the user visits the website at some other point in future.

So if user adds the item to his cart and i) closes the browser and opens a new browser window after some time OR ii) opens a new tab : In both cases should see the item added to the cart

I am using jcookie.js library.The code I am using to create cookie and add cart contents to it is:

$.cookie('rented_car', $(rentContainer).html());
$.cookie('rented_car_timings', $(divRentalSumm).html());

Also when the page loads, I have in my index.html

<script type="text/javascript">
window.onload=checkCookies; </script>

where checkcookies() is defined as follows:

function checkCookies(){
var rented_car_timings_cookie = $.cookie("rented_car_timings");
var $rentTimingsContainer = $('<div class="module">' + rented_car_timings_cookie + '</div>');

[Code].....

Now the problem I am seeing is that the cookies work if I refresh the same page or open a new tab in the same Browser window: I am able to see content added to cart. however, If I open a new window , then I do not see the same .

View 1 Replies View Related

JQuery :: Scrolling Height Of The Window And Placing Popup Windows

Jul 14, 2009

for opening a PopUp Window I use the Popup.js from Adrian "yEnS" Mato Gondelle. Adrian has written a function to center the popup by calculating the window height/with and popup width/height as well ans putting the coord in the middle of these coordinates. Like this:

function centerPopup(){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;

[Code].....

My Problem with this is, that it only centers the Popup correctly if you haven't scrolled down the page. What I need is a jQuery way to get the height of the actually scolled position to calculate the correct value for the top css parameter as well, to get my PopUp every time in the correct top/left position without having this scrolling bug. Is there a way in jQuery how I can get the scrolled down coordinates? I need the height of the scrolled position and by adding the half height of the screen resolution I have the css top value which I need here.

View 2 Replies View Related

JQuery :: Load Function Does Not Work Properly On Chrome And Safari (Windows)

Jun 8, 2010

When I load a page with jQuery load() function API. It does not load the style section on the header using Safari and Chrome.

Attachments
test.php.txt
Size : 538 Bytes
Download : 524

View 2 Replies View Related

JQuery :: Use The Scroll-pane Plug-in To Replace The Ugly Windows Scrollbars

Jan 20, 2011

I want to install jQuery ScrollPane on my site(this one:[url])so I can use the scroll-pane plug-in to replace the ugly windows scrollbars.

Some simple questions:

If I want to use Google's jquery installation, is this all the code I need in my header?

Is there any way to easily test whether the jquery is installed correctly? i.e. a small piece of script that will tell you one way or another?

I found a few examples similar to this online:[url]

When I cut and paste the code onto my page it doesn't seem to do anything (I've either installed that wrong, or the google jquery link wrong, or both).

View 6 Replies View Related

SVG Pop Up Windows

Jul 20, 2005

I would like to pop up a new window when the mouse over an icon, but I don't like to link to another new page, as I will get the details in the database and then I will add those details as the text in the pop up window.

Does anyone know how to do this in svg? is it use the javascript?

View 1 Replies View Related

Windows

Sep 5, 2004

The following code is used by myself to create a new window what i would like to do is to on the submission of the form to close this newly created window and to submit the form back to the parent window.... Is this correct? Code:

View 1 Replies View Related

Run Windows APP From A Web?

Sep 15, 2010

I have an HTML toolbar that I made using VBScript thar launches mstsc to remote servers and a few "\" shared folders. I know that i can do the same thing in js, but not entirely shure about the sintaxis.

This is an example of what i got in my original toolbar:

Code:
<html>
<body bgcolor="lightgrey">
<fieldset>
<input type="BUTTON" name="SERVER1" value="SERVER1" language=VBS onclick="Server1">

[Code]....

View 3 Replies View Related

Windows And Focus

Jul 23, 2005

Neglecting the annoyance factor for a moment, is it possible to keep one browser window at the screen forefront (in front of all other browser windows) but still be able to interact with a window directly beneath it? How would this be pulled off in JS?

View 3 Replies View Related

Child Windows

Jul 23, 2005

On load of index page i am opening few child windows for some purpose now i want if i close the parent window all child should be cloed automatically.

View 1 Replies View Related

Non Rectangular Windows

Jul 23, 2005

I'm trying to open a new non rectangular dialog window from an HTA
application, is it possible?

I tried using window.showModalDialog() with the unadorned feature as a
starting point ... but with no luck.

My goal is to create a shaped window ... IMPOSSIBLE ?!

View 2 Replies View Related

Browser Windows

Jul 23, 2005

is there a possibility to get the number or the names of open Browser windows ? I want to try to avoid double-opening of a page. My idea was to give the page a name and to check whether this name exists.

View 3 Replies View Related

Resizable Pop Up Windows In IE

Oct 20, 2006

I have a web application where we pop up a little calendar control in a
new window to allow users to choose dates. For cross-browser purposes,
this is done via window.open (with some code to make it behave like a
modal dialog) and I set the width and height of the window such that
the controls fit nicely and it all looks good.

I have some users who are unable to see the OK and Cancel buttons at
the bottom of the window due to some display settings on their
machines. OK, I though, I'll just make the window resizable and they
can then take control. How naive of me! Why on earth does IE decide
that the minute I put 'resizable=yes' into my attributes for the new
window that it should ignore the size?

I know I can do window.resizeTo in the onload of the calendar window,
but I'm not keen on the resizing of the window.

I don't suppose anyone knows of a way to have IE open a resizable
window of a given size without the resizeTo?

View 3 Replies View Related

Javascript Windows

Jul 20, 2005

Certain links (using IE) that are meant to open a javascript window
don't seem to work on my system. That is, the window appears and
disappears in a flash. Of course I have disabled my pop-up stopper.
Any suggestions?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved