I'm using a plugin in Wordpress that checks for mobile browsers and sets a variable to "true" if a mobile browser is being used. I have a script I want to use on the same page where I'd like to use that variable rather than have to redo the check again. Is it possible to make a variable in one script global so that it can be used in a separate script on the same page? Greatly simplified, I mean ...
<script type="text/javascript">
var A = 1;
</script>
<script type="text/javascript">
Do something with A;
</script>
Apologies for the almost duplicate post but thought this was much clearer description of the issue than what I originally posted.
I'm trying to do simple integration with a third-party web application. The app has an 'Action' button on all pages that can be associate with a JS function. Our application is very proficient at parsing text provided it is in some reasonably standard structure.
Is what we are trying to do is have a JS function that can be called from any page in their system that will provide a reasonable representation of the text on the screen. I need something close to document.body.innerText; the problem with this function is that it strips spacing from tables so we can't get consistent layout.
The consistent layout I am looking for would be the same as if you did the following on any page:
1) Select all 2) Copy 3) Paste to notepad
Is there a function or process that will retrieve all text and retain formatting?
I have a text box if a user enters a phrase he enters it within single(') or double quotes(").
If the properties for test box are like this <input name="test" id="test" value = "<%=queryText"%>"> then the text box value is blank after submitting the form and when sourcecode is checked the value is ""testing"".
if modified to <input name="test" id="test" value = <%=queryText"%>> then the value is shown after submitting the form as testing without quotes
The page is JSP search page.After submitting the page appears with all the results since it is a search page How can I retain the value as it is when the value is entered in quotes.
I am passing an argument from the first page to the second using form "get" method.
My second html page is a dynamic page.So i couldn't retain the data which im getting from the first page because when the second page is refreshed the data is lost as the URL content is changed.
My site's working perfectly in the other browsers, and when I delete line 28 (see below) it works in IE but not exactly how I want. Is there a way to retain two jquery references on a single page in IE?
I have a programing problem that have been around for ages. I have search on google using several expressions and words and after hours of digging i'm still unable to do it.I would like to get a value from a HTML page hosted remotely with an inconstant value. Then define this value and name as a javascript variable and apply or show in my page.P.S. Is there any way to make a domain lookup in javascript? I mean a user enters a domain and the script converts to an ip and shows to the user. If not thanks, probably it can only be done in the server side...
I have a webpage I've been working on and it utilizes jQuery Autoscroll. You can view it here [URL]
I'm having a problem and I can't figure it out.
I have a text area. I can put text into it and it will scroll. However, when I go to File>new window to create a new identical but separate webpage the text which I just typed into the autotext area doesn't get copied over. Everything else does. Why is that? How can I fix it so that it will copy over.
Is this a JQuery issue or is it more of an html issues.
retain checkbox status.Ex : Check box checked : if i click check box it should be be check.Check box not checked : if i click check box it should be un check.I just want to keep it's previous state.
In my page I have couple of DIVs which are hidden when the page loads. User can show or hide these DIVs.
If a user toggles a div (in page1) so that it is shown and goes to Page2 and comes back to Page1 all DIVs are hidden (i.e. initial state). (I have attached page1 and page2, so that you can try what I have said above)
How can I save the state of DHTML?
One option I know is to use cookies. One of my friend told me that IE supports DHTML Persistance (but dosen't know how to implement it).
It a very simple question,but unfortunately i'm not getting how to do itI have two html file(eg. 1.htm and 2.htm). In 1.htm i have a textbox,a combo box and a submit button.i enter some value in text box and click submit.The page is redirected to 2.htm.Second page has one Hyperlinkwhich is redirected back to first page.Now the question is: Firstly,i want to display the textbox value in second page.Secondly,when the page is redirected to the first page the textbox should retain its value.
I have textarea with id,id_cusipvalue. I am getting the value using the following function$("#id_cusipvalue").val() When I send this data as GET url?+$("#id_cusipvalue").val() All the new line chars get stripped. How can I retain the newline chars?
I have an asp page to search for data. I like to open it in a new window while retain the search values. And I also can resize the window as well as set its attributes like height, width,etc. I created a js function like this:
Is there a way to create a div or some container in which there will be an image such that the image fills the container but retains its aspect ratio? So if the container is 100px x 100px and an image is 200px x 100px it will be resized to 100px x 50px. Conversely, if the image is 100px x 200px then it resizes to 50px x 100px. An image of 400px x 50px becomes 100px x 12.5px and so forth.
The issue is I have to dynamically build the container pulling images from an image folder. The images can come in all sizes. But I want to make sure they all fit in the same square 'box' without distorting the image.
There is text and a button below the image and I want them to stay in the same 'spot' on the screen without being moved around because the height or width of the image above it grows/shrinks to accommodate a change in either the height or width. These can change but not outside a controlled 'box'.
Maybe there's a way to get the actual size (through Javascript or something) then calculate a percentage to resize the image to?
Can we retain multiple checkbox selection upon refresh or using pagination for few hundred records? There is a page where user sees all the items which has search box on the field column to perform searches and select items using checkbox besides those items. While searching the items page result changes and previous selected value is lost. Also the selection is lost when I use the pagination link below the result.
what to do to retain values of a webpage even after saving the webpage on the local disk? i have developed my webpages in dreamweaver cs4 also my webpages are using opera 10.10 as default browser and one more thing i cant migrate it to any other browser.
I'm creating a list of items which visually look like checkboxes. They will work similar to the ones used on eBay that allow you to select only new/used items. Mine are a little simpler though. Here is the markup:
Right now I'm working on a website, and it has a hierarchical menu in the right and im also doing some content loading in a div, all that with javascript. My problem is that when they click on a link, I need to pass a variable "id" through the link. I dont want to pass it in the url, but I want to pass it in another way, for every link the id is going to be different. How can I pass a variable to another page and how can I retrieve it in that page so I can use it for the content loading?
I know I can make a link that reloads a page like this:
<a href="thispage.php">Refresh this page</a> Or, using javascript: <a href="javascript:location.reload(true)">Refresh this page</a>
I am starting from "thispage.php", and I want to reload it as "thispage.php?action=newversion"? (This page has a form that reloads the rest of the page with new data when refreshed with the action call).
Is there a javascript technique that would do this without calling the "thispage.php" part? The page includes a function that I need to be portable to any page that I place it on.
Obviously this is very wrong but I am trying to do this:
<a href="javascript:location.reload(true) . ?action=newversion">Refresh this page</a>
I have a page with a form that a user completed. When they hit submit this calls some javascript. This javascript stores some XML in a variable and inserts the values from the form into the correct parts of the XML.
What I need to do is submit this XML or variable to another page. in effect, the use ris submitting the form to generate some XML then i want to send this XML to another page.
here is the code I have so far:
PHP Code:
<html> <head> <script> function thename(){ var username = form1.username.value; var password = form1.password.value; var phone = form1.phone.value;