Passing Data Back From External Page?
Feb 24, 2010
I'm trying to figure out how to pass an image url back into a javascript from an external page and not from an alert prompt.
This is what I have working:
Code:
var imageUrl = prompt("Enter Image URL:", "");
if (imageUrl) {
this.frame.focus();
[Code]....
View 2 Replies
ADVERTISEMENT
Jul 23, 2005
I'm trying to communicate between a parent document that is controlled
through pure Javascript with an embedded IFrame containing an ASP.NET
form. I can quite easily pass data into hidden fields in the IFrame and
submit the form to pass data to the ASP.NET application.
Now the tricky part! (at least for me, probably not for everyone
else!), how can I set a field in the ASP.NET page (using ASP.NET during
a postback), which I can get the value of within the parent Javascript
controlled page?
View 3 Replies
View Related
Apr 18, 2011
I am trying to figure out how to pass the html back from an ajax call
Let me give a couple snippets
jquery call:
View 2 Replies
View Related
Dec 15, 2009
I have a function in an external javascript file (calculate.js) which calculates the price of a product, based on a users preferences in a form (dropdowns, radio buttons etc). Each time the user modifies their choice, the script/function then displays the price on the page (index.html) using:
document.getElementById("price").innerHTML = price;
Once the user has finished making their choices, they then click the forms submit button (method="post") to be taken to a confirmation page (confirm.php).
Here, I can display the users preferences using php code like:
<?php echo $_POST['size'] ?>
<?php echo $_POST['color'] ?> etc, etc...
But I'm not sure how to pass the price over!
The preferences come from the form and are picked up with php. But the price is calculated with javascript! How do I send it to confirm.php?
I have tried adding
window.location = "confirm.php?Quote=" + price;
to the function, but this changes the page before the user may want to go to the confirmation page!
Can I add a hidden input to index.html with the value set as the javascript variable called price? If so, what syntax do I use for this? I have tried
document.write('<input type="hidden" name="quote" value="'price'" ?>" />')
and some other stuff too, but I still can't get it to work!
Or do I pass the value in the url, like confirm.php?Quote='price'? Again, what is the syntax, as I can't seem to get it to work?
View 4 Replies
View Related
Jul 31, 2009
I've been searching for a few hours and haven't been able to find a code snippet to see if this is available. I'm attempting to pass text from my website to another website that has a form setup on it. I'd like to fill in the pertinent data for my users on the page that I load for them. I cannot make any changes to the receiving page as it is run by another company. I've pasted some of the code that is available on the receiving form.
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
[Code]....
View 5 Replies
View Related
May 5, 2011
I have many tags. I want click each tag, then post/get the tag's value to another page. In another page, received the values and make a mysql query. Then return the resalt data to the first page(do not make an iframe).
[Code]...
View 4 Replies
View Related
Nov 2, 2011
Problem I am having regarding passing data to new page ?
View 2 Replies
View Related
Feb 11, 2005
how to submit forms from one page to another page?
View 9 Replies
View Related
Jan 5, 2010
I couldn't find the fabled "bump topic link",
View 1 Replies
View Related
Oct 2, 2010
I'm making a page for my daughter's school - or trying to. they are having a silent auction and i'm trying to make a very simple bidding page. where i'm running into problems is passing the bid to a text box (read only) where it can be updated when a new bid is entered.
I would like this to be in the upper part of the page with the listings of the auction items, i just can't wrap my head around how to do this. I've gotten as far as the form for entering the bod and contact info. I have the php code to submit. i still have to get the validation js to make it more secure.
<html>
View 5 Replies
View Related
Jan 13, 2009
A page I'm working on lets users open a new window, which in turn lets them send data back to the parent page to create new table rows, cells, links, etc. One of the links created is "delete", so it should delete the row that the delete link belongs to when clicked on. I can do this no problem in ff using the setAttribute('onclick',onClickEvent), but can't do this in IE. I'll show some code to make this easier to understand....
[Code]....
View 3 Replies
View Related
Aug 9, 2009
I have a "pre-order" opt-in page disguised as a "step 1" in the order process of a clickbank product I'm ready to launch.I'm wanting to pass the user's first name, last name, and email address (built into the optin form) over to the clickbank order page upon submit.Clickbank gives me the data strings you can pass along, but I'm not sure how to properly configure this function or where to place it in my page code.This is the only step I have remaining before I can go live, and it's holding me back.I can provide any code needed for review to assist in getting this wrapped up.
View 2 Replies
View Related
Mar 8, 2011
//-----10% Off Coupon-----
if (coupon=="N110"){
form.PRICE.value=-(moneyFormat(fTotal * .10)-1);
form.ID_NUM.value="N110";
form.NAME.value=" Craft Month Promo 10% Off";
location.href=location.href;
return true;
}
I want to replace the .10 with an external peice of data, so users can change the amount with having to open the script. Sorta like those early marquees' where the marquee text was inserted from a text file.
View 3 Replies
View Related
Feb 24, 2004
I am trying to write a script that uses the IF statement to see wether or not a user clicked the back button to come to a page, and then if it's true to not let the page load and kick them back X number of pages (say 4) This is what I have so far:
<script language="JavaScript"><!--
if javascript:window.history.back == 1
{
javascript:window.history.back(4);
return false;
}
//--></script>
View 14 Replies
View Related
Oct 2, 2009
I'm new to JavaScript, I just finished some basic things, like getAttribute, setAttribute, getElementByID etc. I understand that inline javascript isn't the best way to go, and all the JavaScript should go on an external JS file. I also know that you should be able to downgrade gracefully, allowing people whose browser do not/blocked javascript to still use the site. So I just want to do a simple go back function in an external javascript, however it's not exactly working.
[Code]...
View 1 Replies
View Related
May 23, 2010
I would like to have a main form (written in PHP) that has a "lookup" button next to a text field. When the user clicks "lookup", it should open a new window that lets them search (child.page1). When they enter a name or DOB into the search form, it submits the form through PHP (via POST), to a results page (child.page2). This displays all persons in the database which have a name or DOB == to the search term(s), with a checkbox next to each match. They click the checkbox (or alternenatively, a link), and return the checkbox value to the main window.
I have everything working right now, except that (child.page2) doesn't recognize the main window. If the data is entered on (child.page1), it works fine. I'm not very familiar with javascript.. is this even possible? I've considered using frames, to keep the parent-child relationship evident to the computer, but figured I'd check to see if there's an easier way.
View 4 Replies
View Related
Feb 18, 2010
I've been struggling on how to make this work.I have a problem in Javascript when it comes to passing of value in a input type field.
page1.html
<html>
<head><title></title></head>
<form action="" method="post>
[code]....
View 5 Replies
View Related
Feb 17, 2010
I have a problem in Javascript when it comes to passing of value in a input type field.
page1.html
Code:
<html>
<head><title></title></head>
<form action="" method="post>
<input type="text" name="weight" value=""><a href="hw_calculator.html"
[Code]....
View 1 Replies
View Related
Dec 2, 2009
I used to have a traffic tracking script that used to work as follows:
Code:
<script type="text/javascript">
var tracking_image = new Image;
tracking_image.src = '/track.php' +
'?page=' + escape(document.location.href) +
'&referrer=' + escape(document.referrer);
</script>
This would interact with a PHP file which parsed this information and stored it in a database. However I just changed servers, and for some reason this JavaScript no longer works; don't know if it was because of the server move or what.
Is there any way to pass GET variables to an external javascript file? I would like to pass things like document.location.href and document.referrer to a PHP file. For instance something that would function like
Code:
<script src="/track.php?page=" + escape(document.location.href) + "&referrer=" + escape(document.referrer)>
</script>
Or alternatively, perhaps there is some other way for a PHP file to access JavaScript's document.location.href and document.referrer values (I'm using JavaScript to access this info rather than standalone PHP since spiders don't activate JS).
View 3 Replies
View Related
Mar 23, 2011
I'm trying out uploadify to upload images & files. Got it all working fine and got it so that it inserts the filename as a hidden form element so I can grab the filename on post and insert into the database -
<script type="text/javascript">
$(document).ready(function() {
$('#file_upload').uploadify({
'buttonImg' : 'images/browseBtn.png',
[Code].....
But I want to rename the file in uploadify.php and pass the renamed value back to the form, so far, I can only get it sending back the original file name.
View 1 Replies
View Related
Aug 11, 2009
I've used jquery to create a tabbing system and I want to be able to use it on multiple pages. I want to be able to pass a variable containing the number of items in the list from the html to the js file. Inside the js file I have this function:
[Code]...
View 2 Replies
View Related
Feb 18, 2011
I have some jQuery
Code:
$(document).ready(function(){
$("#qty$_GET").change(function(){
var firm = $('#firm$_GET').attr('value');[code]....
if there's a way to prompt me with the value of data just so that I can validate the link that's going to go through with this?
View 7 Replies
View Related
Aug 28, 2011
I am trying to do a simple ajax request using get(). All I'm doing is sending and ID to a processing page that will delete a record from the database. If the process is successful I am outputting "success" on the processing page, if not "failure". The problem is when I try to check for the "success" string in the get() success function, it never picks it up as being "success". Here is the code I'm using:
$.get('/groups/deleteTopic.cfm?id=' + id, function(data) {
if(data === 'success') {
$("#topic" + id).fadeOut('slow');
[Code]...
I validated that the processing page is indeed outputting "success" to the screen by going directly to the page and passing a valid ID in the URL. Also if I alert(data), it alerts "success".
View 2 Replies
View Related
May 4, 2010
I have a form with three select boxes. Box 1 has a variety of choices, but boxes 2 & 3 are empty. When the person selects an option from box 1, box 2 gets populated with choices. When the person selects an option from box 2, box 3 gets populated with choices.
This is handled with javascript through either onblur or onchange (still working on which will work best for this).
The problem occurs after pressing submitting the form and then pressing the back button. All fields maintain their data EXCEPT boxes 2 & 3.
How do I get it so that those two boxes keep the data like the rest of the form?
View 2 Replies
View Related
Jun 29, 2011
I found this script for filtering data in a table:[URL]
However say I type something in the filter, I click a link on the page, and then use the back button...the form resets. Is there a way to prevent this/leave the table filtered?
View 1 Replies
View Related
Oct 18, 2011
For the first time in a long time, I've encountered a project with a single image that has many regions.Each region is a polygon, and will bind to a unique rollover event. That rollover event will pull back data for each region.I've thought of using a hidden image in a canvas with a black background, and a different color foreground for each region. Then, mapping the color the proper region data on the backend.I've thought of passing a huge Javascript object with keys that relate to a position in the image, and values that define the region data.Initially, I dismissed the idea of a good, old-fashioned image map, in an attempt to find something sleeker and sexier. But perhaps this is the best solution?
View 1 Replies
View Related