Prevent Loading Of A Site Via Script?

Apr 20, 2009

I would to know please if is it possible to block the loading of particular site by/via javascript. Having a web page with a flash content that contains a call to a particular site, I don't want to receive information from that site. does exists a javascript code that block that call to that site?

View 4 Replies


ADVERTISEMENT

Prevent Execution Of Tab Key In Site

Jan 9, 2010

I have a site and in that I don't want to users pressing tab key and also shift + tab key. So I need a small javascript code for preventing execution of tab key and Shift+Tab Keys.

View 1 Replies View Related

Library To Clean Input To Prevent Cross Site Scripting

Jun 19, 2007

We have a javascript that is vulnerable to XSS because the input to
the script is not being checked for strings such as "javascript",
"eval", "script" etc. I have seen some snippets of code here and
there on how to check the strings but I have not yet found a
comprehensive js library that will clean user input of all offending
characters. What complicates it is that phishers can encode characters
to bypass the usual amateurish attempts to clean strings of offending
characters.

Any js libraries or resources out there anywhere?

View 1 Replies View Related

Prevent A Script From Loading

Apr 15, 2009

I'm having a problem with a script on my website. My website is wordpress based. I have this script that i need to load on every page except on the main page.

I have tried to make it work, but the only way i can get it to work like i need is including it on the main page as well.

Is there any way i can prevent the script to load on the main page, but load on the other pages?

I mean, is there any code to block javascript on a particular page of a website, but still work on the other pages?

View 13 Replies View Related

Prevent Images From Loading

Jun 8, 2010

for the last day and a half i've been attempting to prevent images on a page from loading. i do this by calling a domready function. i just need this to work in firefox, so i'm using its DOMContentLoaded event. however, for troubleshooting purposes i have opted off the domready stuff and simply placed my code at the bottom of the html before the closing body tag, which does the same. my research shows that all the lazyloading techniques (which at the core are similar to what i'm doing; ie, preventing an image from loading) that do not rely on creating a custom attribute for the img tag, do not work. jquery's lazyloading plugin does not work: [URL] mootools' lazyloading plugin does not work: [URL]. however, they must have worked at one point. read the latest comments on lazyloading techniques online and you'll see that mostly everyone suddenly is unable to achieve lazyloading on their site. the only effect one achieves is that the image fades in when scrolling down, however it has already been downloaded when the page rendered, but it should only have been downloaded from the server once the scroll threshold for that image is hit.

calling a function to replace images with small placeholder images immediately after the dom loads (ie, before the full page loads) should work. this should prevent the loading of the original file in the src attribute, but it does not. i'm using firefox 3.6.3, but it happens on webkit browsers as well (though this is a documented bug); opera, however, works as it should. i did my research pretty thoroughly, but if i missed something

View 5 Replies View Related

Prevent Loading Images Before Executing The Script?

Aug 19, 2010

I'm using mooflow code on my website, problem is that it shows images on top of one another, before script arranges them to row. This only happens with explorer.

You can see example of the images popping up (and scroll bar flashing on the side of the page), when this page is loading on explorer, [URL]

Could there be some solution for the explorer so it wouldn't load images before executing the script? Other browsers work better with the loading order.

View 2 Replies View Related

Prevent Page From Loading If Java Is Not Enabled?

May 27, 2009

Is there any method which blocks the website from loading, if the browser using is not java script enabled? I have a webpage with some details to be entered. This website is designed in such a way that it checks the exceptions in the entry and alerts the user regarding it which is done using javascript. but for some users this feature is not working. I guess its the problem with the browser they use. So how can I alert them to enable Java by adding something to the script? Is there any way which prevents the page from loading if java is not enabled in the browser?

View 3 Replies View Related

JQuery :: Prevent Browser From Loading New Page Until Fade Is Finished?

Mar 9, 2011

I have a site where the header, footer, menu and Google map remain present on most pages,but the copy in the main paragraph changes depending on which menu option is selected.The above is achieved using PHP includes and query strings.I'm using jQuery to 'fade in' the main body text when a page loads, and 'fade out' the text when a menu link is clicked on. It just looks nice, because all the stuff that is always present stays in place (I guess the browser caches it?) and just the main body text fades out and the new fades in.The thing is, the 'fade out' that is triggered by the 'click' event (on the menu link) tends to be interrupted by the browser moving on to the new page. I just want to the browser to stay for half a second so that the nice fade finishes properly. Ironically, when my connection is interrupted or the new page loads slowly, it looks at its best because the fade has time to finish

View 1 Replies View Related

JQuery :: Prevent .load Scrolling Back To Top Of Page When Loading New Content Into Div?

Jun 24, 2011

I've gotten .load to load content into a div but if the window is not at the top of the page it scrolls back to the top each time the new content is loaded but I wanted to avoid any sort of change on the page other than the content in the div. It seems pointless if the user has to scroll back down to the div where the content is each time? code...

Is there a way to keep the window in the same position? Also while I'm at it - is there a more efficient way to write this considering I have 9 pages or should I just write this code out for each instance?

View 2 Replies View Related

Slow Loading Site

Apr 1, 2006

I put a javascript for a preload in it and it hasnt helped the front page. Right now the header is swish and we took that out and it still took over 2 minutes to download on DSL. I do have the JS anthology book but the script in there didn't work for us. Come to think of it I have almost all of the sitepoint books. Does anyone have any suggestions.

View 3 Replies View Related

JQuery :: Deactive Site While Loading?

Jul 11, 2009

I have following problem: If you open a dialog in jquery, the website will be "deacitve" and the dialog would show. I want, that the website will be "deactive", but there shouldn't show any dialogs.

View 1 Replies View Related

Speedup Loading Of File From Another Site?

Jan 27, 2011

I have a JS file on site A which needs a few parameters from a short text file on site B. Since crossing domain boundaries in JS is problematic, the way I do it is that the JS actually opens an intermediate PHP file on site A which redirects to the destination page in site B. Here's how it goes:

The call is made through code...

The problem is that this takes a long time. I would really like to speed this up. For example - I thought of using a direct IP address, so that there won't be any need a DNS server (using
Code...

) but this would expose me to hackers as it would make my Hostgator username visible. According to HG support the above format is the only way to access my subsite via direct IP.

Any ideas on how to speed this up, either by bypassing DNS (but without exposing username) or by offering another way of reading data across sites?

View 5 Replies View Related

Speeding Up Loading Of File From Another Site

Jan 27, 2011

I have a JS file on site A which needs a few parameters from a short text file on site B. Since crossing domain boundaries in JS is problematic, the way I do it is that the JS actually opens an intermediate PHP file on site A which redirects to the destination page in site B. Here's how it goes: The call is made through:

[Code]...

View 1 Replies View Related

Site Loading Time And Compression

Feb 27, 2009

Should I always YUI or GZIP text files in my site or only when they exceed a certain size? Since the decompression takes some time as well I thought that if the files are small they should only be mified...is that correct?

View 2 Replies View Related

Improve The Web Site Loading Performance?

Apr 10, 2009

How to improve the web site loading performance. My current site takes average time 18 sec. to load in first time. and 2nd time refresh it takes 12 sec. through YSlow I am observing the request time it more. how to achieve the better performance. My html code is very much clean and w3c validated.

View 1 Replies View Related

Speed Up Loading Of File From Other Site?

Jan 27, 2011

I have a JS file on site A which reads a few parameters from a short text file on site B. The call is made through code...

Any ideas on how to speed this up, either by bypassing DNS (but without exposing username) or by offering another way of reading data across sites?

View 2 Replies View Related

Loading External Javascript When Site Is Down

Mar 16, 2004

I am working on a client's site and he has some external javascript code that his affiliates can put on their websites to fetch some data. However, when my client's site goes down, the affiliates' sites cease to load thus taking their sites down with it.

Is there any way I can have the javascript check to see if the website is up before loading, and if it is, run this: Code:

View 8 Replies View Related

JQuery :: GetScript - Site Does Not Finish Loading?

Jan 12, 2010

As i understand the getScript function should be asyncronous, but when i use it the website won't finish loading in firefox.

My code:

Calls itself so the counter this script is used for is updated - all works well, just the page keeps loading...so whats the problem here? why does the website not finish loading?

View 2 Replies View Related

JQuery :: Firefox - 3.5.2 - Site Is Render Twice During The Loading

Aug 18, 2009

I don't know if it's a bug in jquery but some of you can have encounter the same problem with their

With the last version of Firefox ( 3.5.2 ), the site is render twice during the loading. 

We can't isolate which element can produce this problem and it happens only with the firefox 3.5 ( not in 3.7pre or 3.0.12, not in ie, etc...

We load some js from external source ( facebook, googlesyndication, etc...

View 1 Replies View Related

Jquery :: Mootools Conflicts - Not Loading On Site

Jan 28, 2010

I am trying to use both jQuery and Mootools in one site I am building. I have researched the web including [URL] with no luck. I have tried loading jQuery after Motools with no luck. My research indicates mootools needs to go first. I have also tried below but that doesn't seems to work?
(function($){
// code with the jQuery $ can safely go in here
})(jQuery);

HTML Code:
[HIGHLIGHT="HTML4Strict"][highlight="HTML4Strict"]
<title>test</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<script type="text/javascript" src="js/jquery-latest.js"></script><!-- jQuery -->
<script type="text/javascript" src="js/mootools.js"></script>
<script type="text/javascript" src="js/mootools-more.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
//MooTools smoothScroll
var smoothScroll = new SmoothScroll({duration: 2800});
// MooTools .....

View 2 Replies View Related

Ajax :: Site Navigation Module Not Loading Correctly

Jul 7, 2009

I had posted this issue previously regarding my Ajax site navigation module not loading correctly. It would load on certain parts of the site and not others. After some research I have discovered that I need to redirect from "www.mydomain.com" and make a call to "mydomain.com" instead. I thought a 301 .htaccess redirect would work but according to the site that sold me the template the script in my configure.php file must be changed. This is what configure.php looks like now.

<?php
define('HTTP_SERVER', '[URL]');
define('HTTPS_SERVER', '[URL]');
define('ENABLE_SSL', 'TRUE');
define('HTTP_COOKIE_DOMAIN', 'mydomain.com')
define('HTTPS_COOKIE_DOMAIN', 'mydomain.sslpowered.com/mydomain.com/');
define('HTTP_COOKIE_PATH', '/mydomain.com/mysite/catalog/'); .....

I am wondering what has to be changed in the script so it will make the call the the correct domain so the ajax script will load on all parts of the site.

View 1 Replies View Related

Site Loading Delay (JS Accordion Effect Doesn't Load Right Away)

Jun 10, 2011

Ok i just created my portfolio site using a simple accordion effect i got from. [URL] Im very new to javascript and coding in general, so im sure my code is far from pretty. My question, is their a way to fix the delay on the way the accordion loads. if you go to my site [URL] you'll see that initially all the sections are visible and then they collapse after a few moments. is there anyway to make it so they are collapsed immediately.

[Code]....

View 2 Replies View Related

Auto Browser Re-sized On The Site Loading / Refreshing - Safari?

Jun 29, 2010

Not what i would like but the client wants the browser re-sized on the site loading/refreshing... Been using the following and it works fine.... apart from in Safari. how i can get it working in Safari, or no chance?

Code JavaScript:
$(document).ready(function() {
window.resizeTo(1152, 866);
});

View 6 Replies View Related

JQuery :: Make Iframe Page That Loading A Page From Other Site?

Oct 11, 2009

i want to make a iframe page that loading a page from other site. I have try "jQuery iFrame Sizing" to set auto height in iframe... but it is failed.

This is my code :
-------------
on Head
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/iframe.js"></script>
on Body

[Code]....

View 1 Replies View Related

Can JS Suss Out "on-site" Vs Off-site HTTP Requests?

Dec 5, 2006

this may be more of an "html" issue, but I'll wing it.

i've got a multi-language site, where the home-page of each language group
features a link to a popup window that offers background info on site
management. the popup is fired by a javascript function, when they click
the site management link. there's also a "window close" function button so
they can nuke it as they please.

now, oddly, people who search for my site in the chinese language on google,
are sent directly to the site management popup window, which of course,
opens in their "full" browser window, and which also has no links back to
the main site, because it's meant to open only as an "accessory" to the main
site.

my question is this: is there any way, with Javascript, that I could
determine if they arrived at this window from "off-site" (ie, a google
search), and therefore offer such "off-site" visitors a link back to the
principal site, a link that would be hidden for visitors who clicked the
popup window from my own site?

View 2 Replies View Related

Temporarily Disable The 'submit' Button While The Browser Is Loading And Then Reactivate It Once Everything Has Finished Loading

Jun 8, 2011

I have only started to learn HTML, CSS, and Javascript (roughly 2 weeks now). I am having a issues regarding when I submit form data to the server. I want to temporarily disable the 'submit' button while the browser is loading and then reactivate it once everything has finished loading. This was my attempt at doing this.

[Code]....

View 1 Replies View Related







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