I have a form button with id="submit". When pressed, ClickGeocode(credentials) is called. This works fine and dandy with: $('submit").click(ClickGeocode) Despite there being no indication that the function takes an argument 'credentials'. So when I want to call the function at some point in my code, I should be able to do something like ClickGeocode(credentials) ... no? However, my issue is that credentials isn't once defined in my code - it is part of Bing Maps function... like so:
function ClickGeocode(credentials) { map.getCredentials(MakeGeocodeRequest); }
So why does it work using .click(), and how can I call the function without user interaction (simply somewhere in my code) even if 'credentials' is not defined?
Im supposed to write an activeX dll that will be called by javascript (with the OBJECT TAG) and was wondering if its supposed to have any special features or its a regular activeX dll.
Also I would like to know if it matters if its written in C++ or VB, and if someone has sample C++ code that does this i will be grateful to see!
When I click on the "Check All" checkbox, it correctly checks all of the boxes in my form, but I would like each checkbox to also call hideLayer2 function just as what would occur if the user checked the boxes individually. Is there a way to call the hideLayer2 function and pass the correct whichLayer and the_box parameters within the DoToAll function? Maybe there is an easier way? Code:
I have a perl script running on my server on a chosen port, and I want to be able to execute functions that this script provides from inside Javascript functions.
i do not know much javascript, but i am trying to call several different scripts from the same web page and it is not working. Is there something i can do or is this not a thing that is do-able?
Can I clean up the header section on some of my pages by putting all the javascript stuff in another page, and then using a server side script to assemble the header?
The page checks a database to see whether the user has a value in a field and if they do then a hidden variable in a form is set to this value. However, if they don't, the form displays a drop down box for them to accept a value. The problem arrises with a bit of form validation that is being run on the page. The button to submit the form is disabled unless the user selects an option from the drop down, once they've done this the button not only enables but also changes its value. When the user already has a value in the DB then the button must be enabled and its value changed. I've tried doing this by calling a function in the onLoad method but this isn't working. Code:
i am designing a function that will generate a menu to be used across several websites. the code i have developed goes through all of the motion i want it to, except for one quirk: while in the loop, instead of going through the loop and inserting choice1, choice2, et cetera i want it to insert, in this example, news, profile, et cetera.
i have used Div with in Div and tryed calling it from javascript, its workin fine with IE...but in firefox its not not..it says "document.getElementById has no properties for first case " n "frames has no properties for second case " in the javascript console within firefox... Code:
I am creating an application in which I want to keep refreshing a jsp file and in that jsp file i need to keep calling another url of type www.daniweb.com/receive.jsp?a=xxx&b=xxx and save this url in database. Here the url keeps changing in every second ie. values of a & b keeps changing.
I have been able to keep refreshing the jsp file but unable to call another dynamic url in it. Please tell me how to do it in my jsp.
when you mouse over and click the highlighted maps it should take you to a website with more detailed maps of the highlighted region. it does not work.I copied most of this code from the latimes mapping section a while ago.They have changed their code now on their latest version.Basically this is the code that calls the url.
function click_hood(feature) { var selectedFeature = feature; var url = 'http://projects.latimes.com/mapping-la/neighborhoods/neighborhood/' + selectedFeature.data.slug;
I'm trying to execute a javascript function from php. I'm calling the .js file first, then the function, but not getting anywhere. This is the code I have.
I'm trying to do something simple: find out which page had the link which got me to the current page. I am using window.referrer, in IE6, but it never has anything but blank in it. The scenario is that the user must go though a sign on page to get to the goodies. If they go direct, they get bumped to login:
if (window.referrer != "login_page" { window.location.href = "login_page" }
But the referrer is no present. I've also tried looking at window.history but to no avail. Are these all netscape specific and if so, what is an IE equivalent?
How do you call a function if it's name is in a string:
I have the function declared:
function Myfunc($arg1, $arg2){ echo $arg1.$arg2; }
Now consider that cFuncName holds the functions name: cFuncName = "MyFunc" How do I call MyFunc using this string variable? something like .... $cFuncName("Test", "=OK")?
I have an iframe inside of a parent page. How do I call the onChange function in the parent page from the ddlProfileNames dropdown in the iframe page? Thanks.
I need to know how to call a function in a different document. At the moment I've tried onFocus but I'm kinda in over my depth. Perhaps if I tell you what I want to do you can give me the process and I'll go figure out the code?
My site is divided into two frames, top frame for navigation, bottom frame for displaying content (called "top" and "main" respectively).
"top" contains 6 images within 6 seperate anchors, that I use as buttons to switch between sections, the sections being displayed in "main". When the mouse is over an image, it changes because I use "OnMouseOver", similarly for "OnMouseOut".
Here is where I get stuck. I want a different image to be displayed as the relevant button in "top" depending on which main section is loaded into "main".
I was hoping to solve this by using "onLoad=" in each of the main pages for each section, that will call a function in "top.html" to cycle through the list of images changing the relevant image depending on the content of "main".
I can see an inherent problem here, I have to make every page (could be hundreds! - nightmare) call this function.
We had a javascript calling a Cold Fusion page (.cfm) and it was working for 2 years. Suddenly yesterday or today its decided it doesn't want to work anymore. I'm picking up somebody elses code I don't know all of the rules here.
All of the examples I've found really want .JS files if called with a script tag, example below.