Specfic Override To The Same-origin Policy

Nov 5, 2007

I am trying find a way to create a specfic override to the same-origin policy between 2 frames so that I can use javascript find out the current url of frame2 from frame1.

I have read that I will need a digitally signed activex control for IE6/7 and I am not sure what is needed for other browsers.

I need this to be secure in that the override will:

- only allow frame1 (when loaded from mydomain.com) to find the current url of frame 2
- not work when frame2 is https

If this is possible does anyone know why I should not do this? If I use this in my app am I going to shoot myself in the foot?

View 4 Replies


ADVERTISEMENT

Same Origin Policy In IE !

May 21, 2006

I m searching for the equivalent of :

try {

netscape.security.PrivilegeManager.enablePrivilege ("UniversalXPConnect");
} catch (e) {
alert("Permission UniversalXPConnect denied.");
}

(that works for mozilla based browsers) in Internet Explorer.
The code above asks to the user to trust the script, so extends
privileges such as same origin policy.

I have a page on local disk with 2 frames : A is a local page, B is on
a server (for example http://www.google.com). I want A to access B
properties (for example parent.B.location.reload() ); on Firefox it
works perfectly (of course only after the consense of the user i.e me),
but in IE I get a "Permission denied error".

View 4 Replies View Related

Overcome Same Origin Policy For Iframe?

Jan 13, 2009

I'm working on a project where I need to build a "web browser" within my web application. Using the iframe, I can't capture the current url and the DOM of the web page that the user is surfing. I realized that this has to do with the same origin policy guarding iframe.

I have the following 2 questions:

- Does anyone have any workable solution to overcome this issue?

- Is there any alternative to iframe so that I can let users to surf web pages within my web application? Or at the server side, I can do something?

View 6 Replies View Related

JQuery :: "Access Is Denied" AJAX Error, Same Origin Policy Protection With Form.js .ajaxForm()?

Jan 28, 2011

I'm having a problem with same origin policy protection using JQuery 1.4.4 and the jquery.form.js AJAX plug-in. I have an AJAX contact form which works fine so long as visitors preface URL's they type in with "www". But if they navigate directly to a URL on my site (not using www), the URL resolves OK but the URL doesn't match what I use in my AJAX form. In Chrome, this results in a console error:

[Code]...

View 2 Replies View Related

Scale Broken In IE7 When Using Origin Argument

Mar 19, 2010

I've been trying to show a div using jQuery's show function with the scale effect. My code works fine in Firefox. When I test it in IE7, it breaks. I narrowed it down to either the origin argument of the scale effect, or the time argument of the show function (which seems unlikely). Like this:

Works in IE7, italics added to show commented code better:

Code:
$(document).ready(function() {
$("#hover").hover(
function() {$("#content_show").show("scale",{percent: 100, direction: 'vertical'});},//, origin: ['center','center']},500);},

[Code]....

Also, not as important, but what is the syntax of the origin property? What values can I use in it?

View 2 Replies View Related

JQuery :: AJAX Call Fails On Same Origin Domain?

Aug 1, 2010

I'm doing a JSONP query of a Wordpress database. Example call:[URL].. This code returns the expected data when executed on my local server. It also returns the expected data when I upload it to one of my remote servers. But it fails when run from the root of the domain it's calling, [URL]... no data is returned. (Behavior is the same for latest versions of Firefox, Safari, Chrome.)

I think there's something really simple going wrong here but don't know what it is. The only clue I have is provided by Firefox: When run successfully, all of the GET's appear in the JS subpanel of NET. The failed calls, launched from the domain containing the database, are listed in the XHR subpanel with a status of "301 Moved Permanently".

View 4 Replies View Related

JQuery :: Microsoft Runtime Error - Invalid Origin

Jan 2, 2012

Error while running the JScript

Microsoft JScript runtime error: Invalid origin: [url]

View 2 Replies View Related

Change Hidden Input's Name Based On Country Of Origin?

Sep 3, 2009

I'm trying, so far unsuccessful to make a function to change the name of a hidden input based upon the country of the user, i have some php code that determines there country of origin of the user fine. I then have a small java script function to change the name of the hidden input depending on the country of origin.

The php variable that holds the country of origin is $country; that variable then needs to be assigned to x in my java script function. $country is equal to AU if your in Australia and US if your in America.[code]...

View 2 Replies View Related

Override Onbeforeunload

Nov 29, 2005

I want to override the onbeforeunload event so that when the user
clicks on the close button, at the right top of the screen, it only
open an alert with OK button and don't close the screen ...

View 5 Replies View Related

Override A Value= In An Input Tag?

Nov 12, 2009

I have the following input tags:

Code:

<input type="text" name="fname_search" value="First Name" onfocus="clrFirstName()" size ="10" />
<input type="text" name="lname_search" value="Last Name" onfocus="clrLastName()" size ="10" />

As can be seen, the input fields have First Name and Last Name as the default values. What I would like to do then, is as soon as the user clicks in the First Name or Last Name field, that the field would blank out and allow the entry of the field. My JS looks like:

Code:

function clrFirstName() {
document.fsearch.fname_search.value="";
}

[code]....

fsearch is the name of the form.When I click on the field, nothing happens.

View 1 Replies View Related

Override Disabled Property

Jul 23, 2005

I would like to override the "disabled" property of a hidden field. When
disabled is set to "true", it would call a function to disable 2 other text
fields on the form. When disabled is set to "false", it would enable those
2 text fields. You should also be able to get the value of it as if it were
a property:

alert(my_hidden_field.disabled);

Is there any way to do this?

View 3 Replies View Related

Override Status Bar In Browsers Other Than IE?

May 21, 2011

I am using window.status = "Message"

for IE but I want to do the same in other browsers.For time being I want to do it in firefox but I have to manually enable it in browser options.Is it possible to do so programmatically?

View 1 Replies View Related

How To Override Location.replace

Mar 4, 2009

is there any way to override this function in firefox?this code worx well in ie/opera:

window.location.replace = function ( newLocation ) { alert ( newLocation ); }

how to override location setter in ie

View 2 Replies View Related

Any Way To Override Submit Behavior For Input Img?

Aug 3, 2006

Normally, a button like <input type="image"is also a submit button.
Is there any way to override that so that it has an onclick event but
does not submit the form?

For what I'm trying to do, I cannot use an <imgelement with onclick.
I have to use a form element (and I'd rather have an image than a
button)

View 3 Replies View Related

JQuery :: Override Or Cancel .prepend?

Apr 9, 2010

$(document).ready(function() {
$('#menu ul ul li').prepend('~ ');
});

This chunk of code is in a .js file that is link to every pages of the site I'm working on (called via an include). I linked another .js file to all the pages of a new section I'm developping. Is there a way to override or cancel the .prepend with my section specific .js file??

View 2 Replies View Related

JQuery :: Proper Way To Override Css For Project

Aug 10, 2011

Very new using jQuery. Anyway, I have the following few lines which create a component on a web page.[code]...

Upon some analysis, I can see that the css does contain the styles used by my div. So now, I would like to change the colors of the component, but I am not sure what is the best practice. Can one override in the div tag the colors, or should one duplicate the .css and change it?

Seeking the best way to perform this that other in the group use.

View 2 Replies View Related

Override A Keypress Event And Redirect It To Another?

May 6, 2010

Code...

I'm getting an error object required on the window.onkeypress line.

I have a data entry app and the users are keying with their right hand on the number pad and flipping pages with their left. If they want to use the normal tab key they have to take their hand off of the papers to do so. I figured it would be pretty simple to override the keypress even for the + key and divert it to act like tab was pressed instead.

View 3 Replies View Related

Prototype - Override Constructor For A Object?

Mar 23, 2011

I have a requirement to override the constructor of a javascript class. I have to execute the current constructor code and then call a javascript method. Basically, I need to execute a javascript method whenever an object of that particular class is created in addition to whatever is being done now. I do not want to copy and paste the current constructor code and override the initcomponent method. I am looking for an alternative for that.

View 5 Replies View Related

JQuery :: Cycle Plugin - Override Display ?

Nov 29, 2011

I got a container as "inline-block", but cycle plugin change it to "block". It fuck up my page in IE. Is there a way to prevent it from overriding my display: inline-block?

View 1 Replies View Related

Script To Override Browser Font Size

Jan 3, 2001

Is there a way to override the browser font size settings with javascript. Basically we want to set the text size on a page so that if someone has their browser font setting say to "large" it does not take effect.

View 12 Replies View Related

JQuery :: Override The Default Messages For The Validation Plugin?

Mar 17, 2010

I'm trying to change the default required field message in the validation plugin from "This field is required" to simply "Required". I tried to do so like this:

[Code]...

but this isn't working. I'd prefer not to edit the actual code to change the message, although that is an option (but one that would mean constantly updating the message when the validation code is downloaded once again).

View 5 Replies View Related

JQuery :: Override An Individual Datepicker Based Upon New Values

May 2, 2011

I have a DatePicker , and a dropdown on my page. When the page loads, the datePicker shows the current month and assumes that no value has been selected in the dropDown. Once the dropdown is selected, I need to reload the datePicker based upon some data returned.

View 2 Replies View Related

Auto Refresh To Override A Remote System Cache?

Nov 5, 2010

OK this is a concept at the moment.

the thinking goes like this:

1) read the page for last date (somewhere on the page) that the page was generated.

2) compare with current date

3) if it looks old refresh or re-load.

4) check for history to count the number of re-loads, stop at once.

Maybe the refresh/load will not add to history if the page is the same URL
SO: without using cookies - the remote system may not save them - our local library system has the OS instances screwed down to the point of frustration, hence the use of FF portable right now.

But my audience use whatever they use so I want a rouse to work regardless. The last time I checked the library system cache was more than 4 days old for sure. And some surfers have the pages from the local cache by default.

manual refresh usually sorts this and I do have a manual button on my homepage.

[URL]

View 2 Replies View Related

Navigation Hover / Slideshow / Display Inline Content Override Each Other

Nov 11, 2011

I am using javascripts in my index page. For navigation hovering, slideshow and the other one is for displaying inline content in a form of a lightbox. But the problem is they cant seem to work together. i have to remove the inline content JavaScript for the slideshow and navigation hovering JavaScript to work. All of them are in the header. I want to merge all these together so that they all work.

Navigation hover javascript:
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
[Code] .....

Slideshow Javascript:
<script type="text/javascript">
$(document).ready(function() {
$('#slider').s3Slider({
timeOut: 3000
});});
</script>

Inline content Javascript:
<script type="text/javascript">
$(document).ready(function() {
$().piroBox_ext({
piro_speed : 700,
bg_alpha : 0.5,
piro_scroll : true // pirobox always positioned at the center of the page
});});
</script>

View 1 Replies View Related

Excel Like Navigation In HTML Tables - Override/intercept Combo Box Keyboard Inputs

Sep 28, 2010

An existing JSP is generating the HTML page and table. I have retro-fitted it so that it adds to each input field a 'trigger' to the onkeyup event.

The purpose of this trigger is check for the the cursor keys being pressed (UP, DOWN, LEFT, RIGHT) and then if it is a logically valid move, shift to the next cell in that direction.

Now, the function it calls, doOnKeyUp, for the most part is working fine... when the input field in the table cells are a textbox or textarea, my method can re-focus the fields appropriately.

HOWEVER, I am having a huge headache when the input field is a combo box. Basically, the value of the combo box is changed with the cursor keys (which is default combo box behaviour (I think)), instead of moving to the next editable cell in that chosen direction.

Problem #1: My question: Is there a way to intercept/override the various onKey events or similar for the combo boxes. For the combo boxes, I want to continue to move between table cells UNLESS a do something specific, like press the spacebar to entire an update/modification mode for the current cell. Everything I have done so far does not prevent the combo box events from triggering.

Problem #2: Also, I tried a nasty hack to try and get it to work, by trying to switch the combo box's value back 1 spot (if it appeared to be needed) by changing the <combo box>.selected value. However, that change never appears to be taking hold, so it is staying at whatever the original selected value was. For this one, I am just curious as to the correct way to have javascript change the selected value in a combo box and make it "stick" and make it applied to the view/UI?

Code example:

You can probably tell by the code that I had been trying various things to change the combo box's selection via javascript, but none has worked for me.

View 3 Replies View Related

Override Windows Regional Settings (including The Numeral Symbols) In An HTML Page

Feb 1, 2010

Can we override windows regional settings (including numeral symbols) in HTML pages?

Explanation:Go to control panel >> Regional and language options >> Regional options and Change Locale to Arabic (saudia arabia). Then click customize and change the 'Digit substituion' option to national.
This would cause all the number symbols throughout your computer system to be changed from latin english '1234567890' to arabic number symbols '١٢٣٤٥٦٧٨٩٠ '. Even if you open up an HTML page, the numbers in it would be displayed in Arabic symbols.

I want my HTML pages to somehow override that customized locale behaviour. Despite having the windows regional settings locale and number symbols in Arabic...I want HTML page to display numbers in English Latin '1234567890'.

View 2 Replies View Related







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