I have the official qQuery autocomplete plugin ( from bassistance) working properly. Start typing a product name and it queries my php script and mysql to return a list of products.
However, when the user submits the form, I want a hidden form field that contains the row ID for that product in the database table. I would have thought that this is a very common need, but I did not see any of the examples in the doc or website.
I have created a html purchase request form that people will fill out and submit to make purchase requests within my company. In this html form, I have a text field that is automatically populated when the page is pulled up. The text field is populated with the name of the person who is logged in and it is read only so they cannot be deceitful or anything.To get to this HTML Request form, you must log in through a webclient thus the server knows to populate your name because you are the one logged in. The text field populates because of its <input NAME = "OBProperty_CurrentUserRealName", which is a keyword the program identifies and knows to populate with the logged in users name into that particular text field.
That works all fine and dandy, so here is where the problem lies. When submitting the overall form request, the populated name isnt being saved/ carried over to the admin page so we do not know who it was submitted by.To make the persons name carry over and save, another field name keyword must be used.
Which is OBKey__163_1. Which it was suggested to me to make that the input name of a hidden field. I need "text field A" to continue to populate the form with the persons name using OBKey_CurrentUserRealName, then pass the persons name off to a hidden field containing the input name=OBKey__164_1, which will thus save/pass the persons name on with the rest of the filled out request form when its submitted.
I have 2 text fields which let me pick a graphic file and want to display then in 2 image place holders so I want to call a function SetImg passing the id of the input file and the image name to to set the source to the file value fron the input field. Code:
Ive created an asp based sign on page with codebehind. Basically how it works is when the submit button is clicked, it triggers an event which captures the values the user has entered, writes out a new form and passes these values to the appropriate fields in the form, and finally I have javascript which automatically submits the form. It works, but i have a few issues..
[Code]....
Also, the other issue...If I comment out the auto submit javascript and log in (it then writes out the form waiting for me to submit before moving to secure side) I can view the html source and actually see the values entered into the field. Of course, with the javascript not commented out the form submits as soon as it is written out so the user never sees it, but I'm thinking this could still be a security risk? Can I make these values invisible somehow?
I have a cgi program which outputs a fairly hefty amount of html/javascript for doing a complex slide show sorta thing in a variety of areas in the browser. I accomplish this by creating a series of iframes and populating each iframe which its own copy of the code and a list of items to display. It previously had it working tickety-boo with both IE 6 and Firefox. I've had to concentrate on adding new features to the IE side and am now attempting to get everything working properly in Firefox.
The issue I'm running into is when I use the form document.getElementById('some_id').someFunction Firefox often replies that the object has no properties. I've handcoded some smaller versions of the my program in straight html and, sure enough, they work great. So, I'm screwing something up in my main program whereby Firefox can't see the objects. Code:
I have been playing with javascript and I have one issue I can't workout. below in my code on a click the td will change its background image and text color. The issue I have I can't get the color to work but the image is find.
So i been doing this color changing and text chaning randomly my text changes randomly but i need the background of the box to change the codes i type in make the entire web site change color but i need the box and this is what im writing
<html> <head> <title>HTML and JavaScript</title> <link href="capstone.css" rel="stylesheet" type="text/css"></link> <script>
I have data pages in my e-commerce site (from 1999) that are imbedded in a parent page using the object tag. I have started to include a little JS snippet that is intended to redirect to the parent if the embedded pages are loaded separately:
This works fine in Firefox, but in IE 7 and 8 it gets into an infinite loop of reloading the parent page into the object frame.Here is a sample:http://www.greathallminis.com/Ancient_15mm/darkages_anc15_mm.htm(I've left this page with the issue, while I have excluded the script for IE elsewhere.)
I am having trouble writing this javascript for my work, normally I would do this in ASP or PHP, but the environment I am working with will only allow javascript for dynamic function.
The form has two different select boxes and based on your options selected for select box #1 and select box #2, the hidden input field "redirect" (which is currently empty) would then populate dynamically with the URL associated with that combination mentioned below. The hidden redirect input field (now containing dyanmically generated data) would then pass the new value via HTTP_POST to .net script that will handle the redirect processing step fed to it. code...
This script is supposed to redirect IE 5 to a page on my site. However, the code is not doing the redirect part. Take a look:
/******************************************************************************* OLDIE - or Old IE. A script that finds the version of IE you're using, and redirects if lower than the set parameter. [[ Created by Ryan McLaughlin, www.DaoByDesign.com ]] *******************************************************************************/ var browser= navigator.appName var ver= navigator.appVersion
[Code].....
I also would like to point out that the code belongs in a .js file. NOT <script type="javascript".........
I have a Javascript redirect on pages inside my site (not the index page) because Netscape 4+ doesn't see the CSS properly. I'd tested it at home, and it worked fine. But now testing it on another computer, its not redirecting. Code:
so I have a form page for a cart to checkout, on the first page, I am using the form action get and the page to pass the variables in the url to...
on the next page, I have grabbing some of them using the document.indexOf function...works great just using document.write(what is returned from the indexOf function); obviously, this just outputs the value in text, however, I need to set the value of a specific hidden field on the same page/form to that of what is returned by what I described above:
I am still learning jquery but I am wondering why this code does not work. I have a select field called item_name and a hidden field called amount. Based on the selection in item_name, I want to set the value of the hidden field (amount) to a set value. For example:
$(document).ready(function () { $('#item_name').change(function () { var value = $('#item_name').val(); if(value == "institutional memberhip"){ $("#amount").val("$349.00"); [Code]...
I have a simple ajax request that is supposed to (after a short timeout) redirect the page to the URL that the server sends back but it just wont work. It does work without the setTimeOut() function however.
var http = false; if(navigator.appName == "Microsoft Internet Explorer") { http = new ActiveXObject("Microsoft.XMLHTTP"); } else { http = new XMLHttpRequest(); }
function go() { var u = "http://site.com/"; http.open("GET", "go.php?" + "u=" + u, true); http.onreadystatechange=function() { if(http.readyState == 4) { var redirURL = http.responseText; setTimeout("window.location.href = redirURL;" , 2000); } } http.send(null); }
I want to have a window pop up with a form. When the form is submitted, it needs to pass along the URL of the original window. If find on th web eight gazillion descriptions of how to pass data from one page to another via hidden fields, but not a word about how to pass that data a second time. Code:
I have a little bit of Javascript that runs fine, but I am trying to write some XML out so that it is the value of a hidden field. When I put it in the hidden field, it just shows the javascript instead of the value.
So, instead of showing the value of i++ it is showing <script>i++</script>
What I want it to show:
What it is showing
It works in the regular page, just not when I make it the value of the hidden form field. Sorry, kinda new to javascript.
I have the following hidden field within a form:<input type="hidden" name="test12" value="test12" />I also have the following function which does something if that field exists:
have a javascript in which i am trying to assign the value to a hiden field and getting the below msg'document.Form1.H_ROWID' is null or not an objecti am getting the value in the alert box but not able to assign it o teh control alert("row " +M_ROWID)document.Form1.H_ROWID.value = M_ROWID
I am currently working on a small Ajax image upload script using some clever iframes, php and a lytebox to create a seamless application. a small link on a page starts my lytebox that essentially opens a new page inside this. this page takes a file upload and using an iframe posts to a php script that will validate the file and upload to the server, the location of this file is then posted back to the iframe for viewing. Once this completes I have a cropping tool available for users to make final adjustments to their image before saving this and sending the new cropped image location to a value of a hidden text box. Once the user is happy with this they can click close to return to the parent page, upon doing this the value of the hidden filed is passed back to parent page and saved into another hidden filed to use. ( To clarify, i use hidden values as the parent page is the actual upload script.
My lytebox version was created to allow usability for users to re-size and crop their image before upload, all this happens in the lytebox to appear like its just a cropping tool.) Its at this point I am having some difficulty. I want to alert the user that the upload has been successful and all that is required is the user to hit save. This was ultimately save the finished image with all the users date in the database. I thought I could use an onchange event to trigger a function that would insert text into a div but this wont work. My code for the parent page and the hidden field is:-
I'm trying to write very basic page that just takes input from a text box, processes it with a function called DoSearch() when you click the submit button, then redirects to the Google equivalent to display Google's search results. If I put a redirect in the body section it works fine. I've also added an alert in the function and that works fine, but the redirect doesn't. I'll post the source below because it's only short:
I have a form whereby I can add multiple contacts to a single address. There is only one firstname/lastname/telephone box - when the user clicks the add button, I read the values from the form fields and record them into a hidden text input field. This part works because during debugging, I have converted the <input type=hidden> into a <input type=text> to visably confirm my data is being copied into the 'hidden' field.
Once the user has entered in one or more names, they can click another button and submit the form for processing. My idea is that I would then parse this hidden field server side...
I have a WAMPHP based server and as a test, I dump out my entire $_POST (basically, the name and value in every INPUT tag).
My PHP script picks up the name of every input tag, including the hidden field (like it should) but for some reason, the value that was written to the hidden field is not passed to the server. Thus, for the PHP folk reading this post, my hidden input field is called mylist and $_POST['mylist'] exists, but its empty. Even though before processing, I could visably see the input in the box (for debugging remember, I made the input tag box a normal, unhidden one).
Here is what I have done to try and resolve: - I have used both Mozilla 1.7.5 and IE6 - both provide same results - my hidden field name gets passed, but not its value.
- I have created another hidden field and given it a default value ie I have <input type="hidden" name="extraone" value="xyz"> and I get $_POST['extraone']="xyz" passed to my php server, like I would expect - however, the value of mylist is sent empty, even though it has data.
- I have even put in a javascript alert box just before the form is sent to the server and can see the result in my (unhidden) box, and the same value displayed in the javascript alert - but again, the value of the mylist does not get sent to the server.
The only difference is that my hidden field (even if its displayed like an ordinary text input box) does not post data written to form fields as the result of a javascript function. Interestingly though, the server does know about the input tag box since it does receive $_POST['mylist'], it justs receives it empty.
What gives? If the form reads my input from one field, and writes it to another field, then it should be sent to the server, true?
Also... my tags are all inside my <form></form> tag (which is proven by double checking, and the fact that I do get the input tag box name sent to my server).
Since I can see the data values in the box, it tells me my javascript is doing what it should be doing - so I don't see any point in including my javascript (though I have no problems doing so if someone requests it). On the php server, I am using a simple phpinfo(); to check the data is being received...
i have a form in which a hidden field (initial value as Ɔ', and my javascript set it to Ƈ' when an event is trigged). In the same form, i have a reset field. But I realized that the hidden field is not reset to Ɔ' when i push the reset button. If I simply change the node from
"<input type="hidden" id='IsChanged' value=Ɔ'>" to