[URL]All on one page with one scrollbar.I want it to seem like I copy pasted all three sites one after another on my page.I tried using frames but that splits up the window into parts. What I want is one long continuous website with all of these frames/iframes/whatever displayed continuously one after another with one scrollbar
Ok im haviung a problem, im building a website and im building some javascript! My main issue is that whenever I use IE7, a small pop-up says "To help protect your security, IE has restricted this webpage from running scripts ... bla bla bla... " you get the picture.Why is it some or many websites dont have this pop-up appearing when they themselves have scripts running? (which i am 100% sure of)Do you need some Microsoft approval so that the stupid pop-up doesn't appear every time i access the website or wut?I need an explanation as to what I need to do to stop that pop-up from appearing
is there a way using .htaccess or some other means that we can block certain websites from appearing when we do a google search of my wife's name? We contacted google and they denied our request to have these websites blocked. My wife has her own website she uses for her business. There was an .htaccess editor website that I visited that created the code after I specified the url of the websites we wanted blocked. Will this work and if so, after creating the .htaccess file what do I do with it, that is where do I attach it/post it? (this is the first time i've ever posted anything on a website. my wife and I are technophobes.)
From the term "automatic login" I suppose security (password protection) is not of key importance here. The guidelines for solution could be to use a Javascript bookmark (idea borrowed form a nice game published on [M&M's DK site][URL].. The idea is to create a javascript file and store it locally. It should do the login data entering depending on current site address. Just an example using jQuery:
[Code]...
Multiply the code blocks in your script, to add more sites in the similar manner. You could even combine it with `window.open(...)` functionality to open more sites, but that may get the script inclusion more complicated.
Note: This only illustrates an idea and needs lots of further work, it's not a complete solution.
This is the code I found on stackoverflow for automatic login to websites but it does not work. I am doing exactly as told is ther anything wrong
I am currently working with <iframe> I want to which website currently I am on when I surf different websites within this iframe for example I have iframe whose src="google.com". I can click any link on the Google page now I want a way by which I can know where currently I am using javascript.
[Code]...
but alert always displays the same [URL] even if I navigate to any website.
I have a problem, say that I have a lot of diffrent websites, and that those are on diffrent webservers, now also say that I want one specific objekt on all those websites, is it possible to write a javascript that gets that object from another webserver?
Code: function getElementFromAnotherSite(){ /*Download www.example.com/images/example.gif
i have 2 buttons one is login and another is registration.When registration is clicked it will go other website , how to make the when registration button is clicked it will go other website?
I have a mod for phpbb that i use some jquery Ajax in to upday users status's, as far as i can tell it works on most sites (including my own) but i have 3 or 4 people complaining that it will not work. I have tested on 1 site and have ftp access to it so i know it installed correctly. I have also taken the ajax out and did the submit directly to the script and it works that way so it must be the Jquery.
I have a simple script for showing my content (pictures) on other websites, but it generates the content by reading the users date (1-31), and because of that can show only certain amount of content/pictures (31) on a mountly bases. Can I edit this simple script to randomize the way the content is being displayed, so I'll be able to display a greater number of content? Example of the way the content is displayed: [URL]
Code that displays the script: Code: <script language="JavaScript" src="[URL]"></script> Script:
Code: var msg = new Array(); Stamp = new Date(); today = Stamp.getDate(); .....
function writeTip() { document.write(msg[today]); } document.write(msg[today]); document.write('<br>[<a <a target=_blank href="[URL]</a>]');
My problem is I want to have all the links display in my website itself. That is, if I gave a link to CNN.com, that webpage should display under my logo, menu etc. Hope u can understand and help with my problem.
I have been studying Javascript for a couple of months now, but have kind of come to a dead end in terms of in what instances will I need to apply JS to websites and can anyone recommend any Q and A style tutorials, to test myself,My current knowledge (which is very basic) so far contains being able to:
Write a prompt Write a confirm write a basic for loop write a basic while loop write an array
Any guidance on scenarios to use to demo JS or a good tutorial website for real world scenarios,
i want to know about the use of java script codes in website. How will this affect the websites rankings in Search Engines. what are the advantages and disadvantages of Using javascript codes in websites.From SEO point of View.
Recently I had a piece of code injected into my wordpress blog header and the script automatically forwards visitors to other websites. I do not know who did it, as they left this piece of cryptic script on it. Can anybody decode it so I can do some investigative work to see who put it there?
I've been stumped. I'm usually good at figuring this stuff out, but I'm completely confounded here.I have a form with tables in it to add items to a series. The rows are being added dynamically by Jquery on the click event.
I am using jquery with the cookie plugin and I have multiple image buttons that can hide/show multiple elements. My question is how can I add a cookie to this code to remember whether each separate element is opened or closed?
The code, $(document).ready(function() { // choose text for the show/hide link - can contain HTML (e.g. an image) var showText='<div class="expanddown"></div>'; var hideText='<div class="expandup"></div>'; // initialise the visibility check var is_visible = false; // append show/hide links to the element directly preceding the element with a class of "toggle" $('.toggle').prev().append('<a href="#" class="togglelink">'+hideText+'</a>'); // capture clicks on the toggle links $('a.togglelink').click(function() { // switch visibility is_visible = !is_visible; // change the link depending on whether the element is shown or hidden $(this).html( (!is_visible) ? hideText : showText); // toggle the display - uncomment the next line for a basic "accordion" style //$('.toggle').hide();$('a.toggleLink').html(showText); $(this).parent().next('.toggle').slideToggle('fast'); // return false so any link destination is not followed return false; }); }); HTML, <a class="togglelink" href="#"></a> <div class="toggle"> Content </div>
I'm trying to search for the correct code to make my form work. I have 3 select boxes - one with 2 options, one with 8 options, and the last with 2 options... All of this adds up to 32 different url paths. Can anyone tell me how to get this done?This is what I have so far: (and yea, I know I suck... I honestly have absolutely NO clue)
This is my first post to this forum. When a button in parent window is clicked multiple times, more than one popup window is opened. This problem is occurring in linux firefox and mozilla browsers. In windows the code is working fine. Is there any option in window.open() method to open a popup window once. s there any known issue regarding this case?. Need a workaround to fix this issue.
hen a button in parent window is clicked multiple times, more than one child window is opened. This problem is occurring in linux. In windows the code is working fine. Is there any option in window.open() method to open a child window once.
I am trying to change each forms .submit function like so (below) but each submit button gets the function of the last iteration. I want each form to have a different submit function without using onclick events.
var x = document.getElementsByTagName("form"); for(i=0; i < x.length; i++){ var ele = x[i].elements;[code].....