Is there a way to change a javascript's output on a website without directly manipulating the source code? Just by entering some info in a form, then hitting submit. Then it automatically changes the content of a website.
What I want to happen is to change some text (specifically a news ticker) on my javascript, located in between the head tags, just by inputting new information on a form which automatically replaces the old one.
Form validation using JavaScript has never been as easy and simple! We have developed a free generic form validation script that can validate any form with very little JavaScript required in form!
Basically, I registered for a free board at one of the various sites because my server doesn't support .cgi scripts. I want to know if there is a way to have the data from a form on my site post to the board site -A user would fill in my form, click submit, and a new post would appear on the board site -as if they had entered it there. If you can point me in the right direction, I would be grateful. Here is my thinking.
A) I can't locate the script that they use to perform a "submit"; so I thought I might enter their <head> data (as far as xmlns, href, etc) in my <head>; that my website might call up their script files, css sheets, etc.
B)I could code my own Javascript function to send my form data to their site. If I knew how to simulate a mouseclick on someone else's site, I could have the script "click" there, paste the data, and hit the submit button. But I don't.
C) I could size their site down to the form itself and put it in a frame on my page
Option C is clearly easier, but I would prefer option A or B. I have time and will happily do the research myself; provided that I know if approach A or B is even feasible.
For instance, Box A has a blank entry and I enter in 5. Box B I enter in 6 so in Box C it should automatically give me 11 (if the code I put in is to add box A and B). Then in Box D I put in 3 (say to subtract from A and B combined) so then Box C adjusts to give me 8.
Don't worry about the math as that's all taken care of it, I just need to be able to know how to update on the fly like this.
I know this has to be easy, but I can't seem to figure it out. I'm debuggin' someone elses code...
x="hello"; +x+"world"
....and I don't get it! What does the "+x+"world" do? If I alert(x) the only thing that comes out is "hello". I also wondered why it doesn't error without the ";" at the end of the line.
This is a novice question, but I'm stumped. I have a variable with a bunch of text assigned to it. Now I want to email the value of the variable. I have a simple form that asks for their name and emails that, but how do I add the variable result?
I know nothing of js yet, I'm still studying CSS & PHP. So I'm just looking for a ready made script for vertical scrolling. I found one that does exactly that, but all the css styling is done in the javascipt, so I was completely lost. I want to be able to just enter the html (into the js array if neccessary, I can do that much lol) and have it scroll upwards, simple as that. The nearest thing I could find to what I want is this Creating a vertical content scroller using DHTML I can style my div & images myself, then all I need to do is enter the html and away it goes, but it functions just like the marquee tag in that it waits for the entire content to clear before it starts scrolling again.
How do I add blank space as acceptable in this expression?
//checks for numbers, - or space only function checkPhone(frm,fld){ obj = eval("window.document."+frm+"."+fld); tstval = obj.value; re = /^[0-9-]+$/; if(!tstval.match(re)) { alert("Numbers or dashes only please."); obj.focus(); return false; } else { return true; } }
I have a pageA containing a form the user my fill in partially. All data is stored into cookies. He follows a link to pageB that contains some of pageA.form inputs. If he adds or change form data cookies are instantly updated. What I need is if the user goes back (back browser button) to pageA, the form here is updated from updated cookies. Only Firefox 3 does the job without extra code. Ive tried all sort of things I found on the web with Opera 10, Chrome and Safari 3.
I'm making a survey where every question has a numeric value assigned to it, and as the user clicks on a checkmark button to approve (or uncheck to disapprove) the values add or subtract to give a total at the bottom of the page.
Basically, it's a spreadsheet but with fixed values for each row instead of being able to type them in.
I can do this easily with php, but only if the user clicks the submit button. I was hoping to find a way to do this real-time.
I'm not looking for someone to do this for me, but can someone point me in the right direction of a tutorial or something that is similar so I can build this into my program?
I have a page with 2 forms on, namely form1 and form2!!
In form1 there is a listbox with a drop down of IDs. Now if the user selects a different ID in that list, form2 hidden variable (qualstatus) needs to be updated with the new ID which was selected in form1. I have tried the following.
function changequal() { document.form2.qualstatus.value = document.form1.qualstatus.value }
I am using Form in a PHP Code - which post the results to another external - application, and i would like to save some recordes in DB (when someone use the submit button) before moving on to the external-app. how could i do this in a javascript or is it possible?
I'm using Javascript to create some dynamic content on my website. Basically it's looping through some values and updating an input field with the values.
What I'm wondering is, do I have to do this using a form and an input field? Is there a way I can get Javascript to update the content inside a DIV for example?
I was wondering if there was an easy way to configure a message box to resemble that of a login form.It would preferably have two text fields for username/password and OK and Cancel buttons as well.I currently have a normal login form on my website designed using PHP but it does not figure into what we need to do now. I'm not sure about going about this and I have tried looking for quite sometime for an example of this but cannot find one.
I'm kind of new to js, I wanted to write some non english chars inside an array, and it only seems to work if I write unicode notation, e.g. "u1234" per char. I was wondering if there is some easier way to do this, maybe somehow specify to the browser that the js file is utf8-encoded or something similar, but I'm not sure how to do that.
I'm doing an ajax call to a remote php file... it returns a value fine, and even enters a value into a text field on my form. The problem is, right after the function call to the ajax function, I do an alert of what the field value is, and it doesn't recognize the field value has been changed. Two caveats:
1 - It will recognize the last call's change (if I run it a 2nd time, it'll see the 1st call changes) onBlur="ajaxCall(document.form1);alert(document.form1.ajax Field.value);">
2 - It'll recognize the current call's change if I set a 2 second timeout onBlur="ajaxCall(document.form1);setTimeout('checkFields(d ocument.form1)',2000);">
It seems, although I can see the text field getting updated, programmatically speaking, it isn't reflecting it until everything is done... including any alerts and such.
It's weird seeing the empty alert popup, when I can see the value in the text field underneath it.
I am moving all of my scripts from mootools/scriptlicious to jquery.I was easly able to submit a form and update a div (based on the output of the php file) as follows:
<script type="text/javascript"> function send(){ var params = Form.serialize($('commentsForm'));
I need to make a change to a web page that has lots of JQuery things in it, it appears. Not knowing anything about the actual use of JQuery, however, while I will start looking at the doc, can someone help me with what to look for in a 4000+ line file to find out where the value is being set for the hidden field. I have been unable to identify this. There appears to be no onChange or onSubmit JavaScript call. I have been given this file with the need to figure this out right away, with a very tight timeline to make many changes, so this one item can't take the time required to start learning the whole of JQuery before I can make a change.
I've done a fair bit of development in php, html and css, but none whatsoever in javascript so far.
I've found myself looking to jQuery as a potential solution to an interesting problem that I'd like to solve: I have a basic CMS that clients can use to manage the rental of items (caravan pitches to backhoes). The site administrator gets to enter the details of their products, prices and so forth, and then visitors to their site can see the availability of their products on a dynamically generated calendar - and book them online.
Part of the CMS allows the creation of 'seasons' - periods of the year in which a product's rental price changes - for special offers, etc. Different seasons are shown on the calendar using different css markup that the admin can change in the 'create/edit season' form.
Clearly, I can't expect Joe Siteadmin to type correct CSS and, ideally, I'd like to avoid limiting him to a swatch of pre-generated choices. So, having been seduced by the sexiness of the jQuery UI calendar plugin, I was thinking that it ought to be fairly easy to provide a jQuery color picker of some sort on the 'create/edit season' form, maybe with some radio buttons to dynamically link the picker to change background, text and border color - and update the relevant css rules for the colors chosen, on the fly, in the relevant input field on the form.
I was making mysearchfieldI though jQuer may help update one dropdown box when a value in one box is updated.
So, my search goes like this, Search for Pet [PetDropDown], Search for Breed [BreedDropDown], Search Location [Text feild] and Search Price [Text Feild].
So in this system i want the [DropDown] box to automatically update it self, with no reloading, thats where jQuery comes in (im guessing) with a list of Breed that link with the Pets DropDown. So if the user picks Dog, then the Breed Dropdown will show Breeds that areassociatedwith Dogs, such as Collie, Jack Russell or Staffordshire Bull Terrier. If a Pet isn't selected then nothing will show.
The information come from the data and a phpstatementfor the Breed DropDown would be as such: $sql = "SELECT id, title, value, type, cat FROM site_cats WHERE type = '[PetDropDown]' "; of course it wont be [PetDownDown] but as a $value such as $petType or $pet.
I have a form that works out some basic math questions e.g. area etc. I run a function when a form field is updated to do the calculations, however I'd like to run a different calculation depending on which form element was updated. Is there a way to say something like:
if (area1 was updated) { work out this calculation } if(area2 was updated) { work out this calculation } and so on?
In my jsp,Struts project i am using the javascript calendar control for selecting the date and by using function calcage() i am calculating the age of the user but problem occurs when the page refreshes OR when user updated the other values such as name ,contact no. Then the value of the age is set as 0 in the textfield as 0
I have inserted the easy slider code into my web page to make a sliding gallery. I attempted to modify the code so that numeric navigation AND arrow navigation (next, previous) could toggle slides BUT I can't see the number navigation in IE6. Every other browser I have tested (mac Safari, Firefox, and Google Chrome as well as IE7,8) work perfectly. Since I modified the original, I assume the error is in my javascript code OR in my CSS.Here is the Javascript: