Framing A Specific Part Of A Webpage?

Oct 22, 2010

I am trying to create a Google Translate widget on my webpage, with just one language pair, Latin to English. Unfortunately the Google Translate AJAX API only supports a subset of all languages available, and Latin is not included. However, Latin IS included on the Google Translate website. Apparently languages that are in beta are available there, via a different server, while only fully released languages are available via the AJAX Translate API.a) I wrote a script that generated the XMLHttpRequest() call to the server the Google Translate website uses, but it always returned a '0' status code. I have since found out that this is normal, as these kinds of calls can only be made between pages on the same server.b) I then wrote a script that created a popup, and used the baseURL+params for the URL, , and this produced a pop-up window containing the translation result. However, as that page came from a different server to the server containing the script, I could not access the results on it. The code for that is here:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

[code]....

View 3 Replies


ADVERTISEMENT

Disable Part Of Webpage

Jan 26, 2007

I am designing a webpage making use of ajax. When the user is asked to input information, a div appears in the middle of the screen with a form. Is there a way to disable the rest of the webpage behind this div? I know on live spaces (spaces.live.com) when you are editing your space prompts come up similar to what I am trying to do. Do you know how they do that? Do they use a different method?

View 2 Replies View Related

Load A Part Of Webpage Using Iframe?

Mar 28, 2009

how to load a part of a web page using iframe ?

i know the left and top pixels, src of the web page, height and width of iframe

View 1 Replies View Related

JQuery :: Selecting Specific Part Of String?

Mar 17, 2011

I have:
<div class="date">21-Mar-11</div>
I would like to select only the 21 and then only the "Mar" and replace the content of the div with "Mar 21," or something along those lines. The output is not the problem. I need selecting specific parts of the string. So I want to learn more about selecting specific parts of strings.

View 1 Replies View Related

JQuery :: Grabbing Specific Part Of A String Of Text?

Jun 10, 2011

I'm trying to grab a specific part of a string of text and am wondering how to do it (or if it is possible to do it) with a jQuery selector.Is there any way to get that specific part of the link?

View 2 Replies View Related

Specific HTML Elements On Reloading Part Of Page

Jan 24, 2010

I am trying to do is load new content into a form without resetting the form. I have about 10 checkboxes, once 4 are selected I would like to reload a div in the page to insert four corresponding textareas with the same id as the checkboxes. So for example the checkboxes:

Code:
<div id="page_select">
<input type="checkbox" name="option1" id="option1" value="Home" /> Home
<input type="checkbox" name="option2" id="option2" value="About" /> About</div>

There would be about 10 after 4 are selected than four divs with textareas are loaded onto the page - These textareas have the same id in order for the right ones to load. If your wondering why not just hide the textareas and show when then have been selected by the checkboxes, its because they have a wysiwyg editor attach so it would start to load slow after I add say 10-20 different textareas.

Would this work:
Code:
$(document).ready(function() {
$('#reload_1').click(function() {
//var names = [];
var myScripts = new Array(4)
$('#page_select input:checked').each(function() {
names.push(this).attr("id");
});
$('#content_div').load('external_content.php.html # . + '. myScripts[0]);
$('#content_div').load('external_content.php.html # . + '. myScripts[1]);
$('#content_div').load('external_content.php.html # . + '. myScripts[2]);
$('#content_div').load('external_content.php.html # . + '. myScripts[3]);
If I had all the divs and textareas in external_page.php and load only the ones needed.

View 4 Replies View Related

Actively Change / Update Content In Specific Part Of Page

Aug 3, 2011

I am current building an information database for the company I work at...basically just a place for employees to get information and answers from. It is all hosted on a local server and I can only use javascript, html, and css. I've got everything made there is just one thing i want to add to it. Basically an "alerts and updates" page that only some people can edit without having to know html so if im not there they can post important updates. No computers have access to the internet so I did try some rich text editors but none of them worked. The layout I'm going for is kind of like this.

Alerts and Updates
Click on links to show updates: update 1 * update 2 * update 3 * update 4
Stuff goes in the update
[edit button]
You click edit it prompts you to login, bring up something to edit the text in that specific update you hit submit and it changes the info that was on there. The update links are linked to a script I wrote that just display the info below so when the page loads you see whats in update 1 then you click update and it changes the content to the next one.

View 1 Replies View Related

Select/highlight A Specific Part Of Text String Inside A Form Element

Jul 23, 2005

Scenario: you enter "foo bar" into a text field... Is it possible
through javascript to select/highlight just "foo"?

formObject.select()

selects all. I need to select only part of the string.

View 5 Replies View Related

Framing A Site That Cannot Be Framed

Nov 23, 2006

Is this possible? You see, I have one part of my site loaded onto a different server because it was impossible to store that type of file on the server the main part of my site is on. I have tried to show the second part of the site in a frame on my main site but the site has been fixed so that it cannot be framed. Its like this basically.

Main SiteSecondary Site
Homepage etc.Member's Area of site

I want to frame the "unframable" member's area onto the main site. Can it be done? I have tried frameset and iFrame tags and they don't work. Are there any more?

View 2 Replies View Related

Framing Time Table For Schools?

Mar 17, 2010

how to frame timetable for schools using j2EE

View 1 Replies View Related

Zooming An Image Inside It's Framing Div

Feb 6, 2011

zoom an image without getting out of the div's border? i've found many zoom scripts but all open a new frame or window or whatever and i want it to stay inside the predefined boundaries.

View 3 Replies View Related

Window.location.href ... Flush - Webpage To Launch Setup.exe Then Go To Another Webpage On CD

Aug 10, 2010

It launches in IE and give the user instructions, then at the click of a button, launches my setup.exe. I want my webpage to launch setup.exe then go to another webpage on my CD, congratulations.html, which says "installation is complete etc". Here's what I am trying to do through JAvascript. It doesn't work. Should the first instruction be flushed in order for the 2nd one to work?

[Code]...

View 7 Replies View Related

Use The Values Of Text Boxes On My HTML Webpage To Create A Webpage URL

Nov 23, 2011

I want to use the values of text boxes on my HTML webpage to create a webpage URL (like below):

<script type="text/javascript">

My text boxes are as follows:

Now this all works and the result webpage URL prints to id='ID1', but the big question is how do I use this resulting URL in another Javascript section as the src="?

For example:

View 14 Replies View Related

Display A Webpage From Another Domain In Webpage And Access Its Elements

Mar 5, 2011

I am trying to display a webpage from another domain and tried to access its elements and I am facing issues with this.

I tried using "iframes" and am facing cross domain issues.

All that I want to do is, set and get the attributes of the elements of the webpage from the other domain (eg: set text field value, get dropdown box values, click button etc)

Is there a way to get this job done?

I thought of browser addons however it will be a browser specific solution.

View 14 Replies View Related

Webpage Within A Webpage (force An Iframe To Reload)?

Oct 23, 2011

1st post: how to force an iframe to reload? 5th post:how to force an iframe to reload? i tried the first way, and this doesn't work, then i try this:

[Code]...

View 1 Replies View Related

JQuery :: Select A Specific Class Inside A Specific Div Based On The ID From A Button Elsewhere On The Page

Mar 10, 2010

<div class="box top"></div>
<div class="box main">
<div class="box header">
<div class="badge"><ul><li class="active"><span>60</span></li></ul></div>

[Code]....

What is happening is $(this) is no longer based on .expand being the (this) that is clicked.

like if i have a button SOMEWHERE randomly on the page with this

<div onclick="Minimize('_alerts');">Click Here</div> this will minimize alerts but because the (this) in minimize function doesn't actually point to the right button that I want to add a class to.

Is there a way to modify the minimize function so that it finds the <div id="mytoggle"><ul> <li class="expand boxminimize" rel="_alerts"> using the rel toggle, and then changes the class of the li from expand boxminimize to boxexpanded??

just like the .expand click function I posted on the top of the post that works?

View 1 Replies View Related

Browser Detect To Load Specific Code For Specific Browsers?

Oct 6, 2009

Another thing that has been driving me crazy is that css positioning is handled differently by different browsers. JS is not my area, but I can do a lot with CSS, and I do, but cross browser compatibility is killing me.

I can use an IF IE statement and only IE runs that segment of code, but I haven't been able to figure out out how to make ONLY firefox or ONLY opera or safari enact an encapsulated segment of code. The same type of IF statement doesn't work for them.

Is there a single method using JS that works for all browsers?

View 8 Replies View Related

Get The InnerHTML Of A Specific Cell In Column 3 And Row 2 Of A Specific Site

Apr 19, 2010

I know this code works just fine:

function result(){
var result = document.getElementById('resss').innerHTML;
}

But what I actually want is to import data from a table of an external website. E.g. I want to get the innerHTML of a specific cell in column 3 and row 2 of a specific site.

View 1 Replies View Related

Script Code For A WEBPAGE ON TOP OF A WEBPAGE?

Nov 23, 2009

Could anyone know the script code for a WEBPAGE ON TOP OF A WEBPAGE? The site was not working anymore, so I can't tell you the link. This is what I saw, When I visited the site (Mainpage) There's just a Welcome Image that shows CLICK HERE TO ENTER. After clicking the link, a loading faded icon appears on top of Welcome Image covering that Welcome Image with Webpages, it's like popping to the center of the page. I don't know if someone of you could understand me. It's like Page on TOP of another Webpage without leaving the 1st page.

View 1 Replies View Related

How Do We Trim A Part Of URL?

Feb 26, 2006

How do we trim out or remove a part of a URL or path?

eg. http://www.mywebsite/folder/somefile.htm ----I want to trim
http://www.mywebsite/folder/ so All I have left is the file name.

<script language="JavaScript">

var pathtotrim = location.href;
document.write (pathtotrim);

</script>

View 10 Replies View Related

JQuery :: Get A Certain Part Of An URL?

Jun 17, 2009

I have a little problem and I hope that I need to get the path of the URL except for the first slash "/". Now if I use window.location.pathname I get an output like this: /about/about/9081ae1b02/

That is almost right but I need to get rid of the first slash (marked in red) so I get: about/about/9081ae1b02/

View 1 Replies View Related

Splitting Url Can Use The Last Part?

Sep 8, 2011

I'm trying to figure out how to split a url variable... I tried these two ways, with an alert to see my result, but I'm not getting anything.

[Code]...

View 8 Replies View Related

Change Only Part Of A Src?

Aug 16, 2010

I've got an idea for simplifying my code and avoid a bunch of switch functions but don't know how, though I assume it's possible.

How do I write a function to change/insert only part of an img src?

View 4 Replies View Related

Printing Part Of A Page

Jul 23, 2005

How do you print part of an html page using the javascript print()
function? Is it possible to put the printable area inside a
<div></div> block and print it, or can you use a hidden style then
print it?

Is there a site on the www which has some information?

View 4 Replies View Related

Refreshing Part Of A Page

Feb 15, 2006

Is it possible to refresh only part of a page rather than reload the
entire thing?

I have dropdown box that's populated from a database using ASP that I
need refreshed but I don't want to reload the entire page.

View 6 Replies View Related

Print Only Part Of Page

Jul 20, 2005

is it possible to use the javascript:window.print() command to print only a
part of my window, lets say a table without navigation?

View 1 Replies View Related







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