I´m using this code to avoid the "click to activate" a flash file, it does work, but it seems like the browser is still loading something (not flash), it is related to this code, since removing it, the browser stops loading.
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
I can see that both the javascript.js and javascipt.php files are executing from the web logs, but when I try to query the $_SESSION['javascript'] variable from another page $_SESSION is empty.
Is it possible to create/update a Php Session with Javascript?
Might it be done using URLEncoded URL, Javascript XMLHttpRequest, or something of the like?
What I want to be able to do is to display this div with Lightbox but do it from JavaScript. For example, from the body onLoad event I would like to call a JavaScript function that opens a Lightbox.
Then, the Lightbox is going to contain a few fields so I was going to have JavaScript validate that the user entered all the fields. If they did, I then want to close the Lightbox. If they did not, I will display an alert message. I can get all of this to work except having JavaScript close (actually, it is hiding) a Lightbox div. Can someone help me figure out how to hide the div from a JavaScript function?
What I downloaded was Lightbox Gone Wild which I think is also called Leightbox.
What I want to do is create a button, that when pressed, closes the window it is in, and launches a URL. The window the button is in is actually just a sub-page of the main website page, launched with target="blank", but I just do not want to close the window as I said, I want to launch a website address from it & have the launched from window close.
So please, walk me through this. Where do I place the:
<SCRIPT language="JavaScript"> ?
(Oh - this is thr right way, correct - case sensitive, right?)
Then what? I can create a button with the tutorials, but if you know, just write the darned thing for me please - I learned HTML mostly from copy/pasting.
AND... OK, now more complicated maybe (???). Actually this is more important than the above. This is from an application sub-page, the page opening with target="_blank". So the below is HTML that creates buttons. If the applicant presses the "submit application" button, at least when I press it, it launches O.E. and asks me if I want to send the filled-in text through O.E. to the email recipient. You know what I mean, right ? Well, I want the window the "submit application" button is in to do it's thing all right - submitting through the email, but I also want the page or window (I.E. or other?) launched from to close also.
I want to trap the window.close() event when the user clicks on the close button of the browser using javascript. Can anyone shed light on this problem ?
I'm just restating my "site abandonment" post but with a clearer title as I realized it probably only made sense to me and me alone.
I have window that pops up with our commerce system. I have it set to pop up a window via JavaScript if the visitor quits early in the process (abandons the commerce system before completing all of the steps. The new popup is just a customer survey ("why are you leaving, is there something else we can help you with" etc. etc.).
Here's the problem, it works fine in IE, but in Firefox, anytime the page in the original commerce window is changed, refreshed or advanced to a new page, the survey popup window is called rather than just on window close.
Again, here's the two JavaScript routines that handle clicks on the graphical close button and on the window 'X' close button. Code:
As per the rather long subject, I would like to (well, my boss would like me to...) on a popup have one button to close and another to close but then redirect to another page.
Suppose,closing the browser through Browser Close Button(Top Right Corner cross(x) button), i have to execute some ASP script , for that, in body onUnLoad Event calling a fucntion called CloseWin(e,frm), it is working in Internet Explorer successfully , But in FireFox not working. how to solve this problem. or any other way to get the co-ordinates of browser close button( code for both IE and Firefox).
code follows
function CloseWin(e,frm) { //frm required for my program var bButtonClicked = false;
I am having difficulty on maintaining session when using ajax.
I first load a page with a session genterated. But since AJAX is a client side activity where I sent an AJAX request to an url without any session info. Of course, the server will create a new session. Even though I can write the session id into the first page where I made ajax calls, it is not a secure way...
I'm just beginning with JavaScript (and Ajax). My loginscript now works with Ajax - that is; the script is sending a request to the servers PHP script to check username and password, but I wonder what that script should return - and how to use that response. Either XML or pure text: The response is now "false" if the user couldn't log in for some reason, and the users ID and real name if the login went well...
But then the problem: if login IS ok - so that the users ID and real name is returned from the serverscript - I would like to store those variables in a session variable ($_SESSION in PHP). How do I get those variables back to the client script from JavaScript?
I know how to access Server Side Session variable at client side(JS)..But i want to know how to Set Sessin varable at Clinet side(JS) & access its value at Server side.
I know how to access Server Side Session variable at client side(JS)..But i want to know how to Set Sessin varable at Clinet side(JS) & access its value at Server side..
Is there a way to check for to see if the user has session cookies enabled? I know how to check to see if they have cookies in general enabled, but how do you test for just session cookies?
Using window.open(), the exec'd child window shares session information with the parent. Is there a way in JavaScript to exec a new browser window that does not share?
i am working on a java and HTML based web application. now i am storing session variables. is there a way for me to pass on these variables to javascript. what i am getting at is, i need JS to do something based on the user variable.
I had written code which created a shopping cart into an array using vbscript and then transferred the information into a session variable. However what I didn't know was that deleting/manipulating information in an array using vbscript was not that easy.
In doing some reading and research it seemed that js was more flexible in this area. My questions:
1) if I want to store cart items/details in an array and session variable do I need to use only js (and can not switch back and forth from vbscript and js)
2) if I have an array 6x12 and want to delete all the items associated with say arrayItem[1, 0...12] what is the proper coding to delete...is it splice?
3) any good articles about js, arrays, and multidimensional arrays for a beginner?
Closing all windows should end the session but on the reopening cookie page I find the session cookie is still alive.
If I alert(document.cookie) I get viewStatus = 1
If I rename the cookie to say "vStatus" and close the window when I reopen it and alert(document.cookie) I get
viewstatus=1 vStatus=1
any ideas?
This only happens in IE ( as always)
PS
I just did a little experiment, I closed all windows, created a new file with just
<script> alert(document.cookie) </script>
in it then opened the file and still got
viewstatus=1 vStatus=1
I know I did not have this problem before because I have a session cookie example on my site and that does not work now so is it something new that is wrong with IE.
In my project i am using ajax and jquery. After going to a page via ajax without page reload i want to see the same page if the user refresh the browser. I used the cookie plugin inorder to solve. As it is not safe i am trying to do the same using session. I have dowloaded the jquery session plugin and initialized the session variable using the below satements.
var SESSION_URL = $.session("current_url",Url); var SESSION_DATASTRING = $.session("dataString",dataString);
and i am getting the session value in the same jquery $(function) where it is initialised, through alert($.session("current_url");
But i am not getting this session value in an another jquery event like
window.load(function(){ });
How can i get the initialized session value in an another event.
I currently have a form that asks for certain info. When the user enters and then submits it, a javascript script sends the info to a php form and then php does its thing. While doing its thing, php tries to change a php session. I am wondering if there is a way to change the php session, and have it take effect on the user end without a refresh. So if the user has a session for their name (Bob), then goes to this form and changes it to Joe, then session the user has will be changed from Bob to Joe without the page reloading. Is this possible?
How to pass (well more like bridge) session information to the client side from server side.
Right now, what I'm basically doing is echoing the userID and the username into a method in JavaScript tag at the bottom of every page.
The reason why I am doing this is simply for AJAX-related interactivity.
This is an example of what the code looks like:
Code:
A) It requires JavaScript code to be pasted within the HTML document (its non-external).
B) It requires the code to be echoed in EVERY PAGE.
C) A PHP Script or Class must maintain the responsibility of printing the session values.
D) The variable data cannot be accessed from any imported javascript files prior to where it was printed.
Now, I'm wondering about using Cookies. This would benefit me since I don't have to inject any ugly javascript code into the HTML output. I can also remove the PHP script that echoes the values and the changes will be purely handled in PHP (cookies can be updated!).
The only issue that's stopping me is simply security. Since cookies can be edited very easily on the client side, then the data can be changed. But then again so can the JavaScript (using a tool like Grease Monkey).
Once again, I am aware to never ever to trust the client side data without any validation; therefore using some sort of hash checksum, the cookie data can be compared to its PHP equivalents.