I have set up a pretty nice page with moveable layers and everything. Now I'm stuck in the very last part, how to open a popup!
Basically I have a div-layer with three events: onmousedown, onmousemove, onmouseup and ondblclick. The last one should be for opening a big image of the small thumbnail in the layer.
So what I've got yet is this:
function Oeffnen(id) {
var url = "bilder/"+window.document.images[id]+".jpg";
it's the "var url" part which is giving me headaches. The thumbnail is say /thumbs/img1.jpg. On double-click it's supposed to open a new window containing /pictures/img1.jpg. Not really difficult, but I just can't figure out how to get the "img1.jpg" part! id is the name of the div-layer.
I'm implementing the Sortable future from MooTools, currently, I'm tweaking it so I'll be able to use nested lists, just in the way I want it.
[Code]...
In this Sortables object, I need to retreive some elements from this CURRENT sublist. As you can see, for the moment I've placed a % sign, where normally an integer or another key would fit. In PHP, we know the function "current()" for this. But how do I fix this in JavaScript?
For a site, I am making a listing object. What it does, is it fetches rows of data from a serve using JSON. The object has a method called loadlist.to print out the data it now does something like this:
I was working on Date() object of javascript. When I write: today=new Date(); year=today.getYear(); month=today.getMonth(); day=today.getDay(); Here everything was correct but when I print month then I got currentmonth-1 that if the currentmonth is 5 then t get 4. If the current month is 07 then I get 06. At last I worked by adding 1 with month like month+1.
I had a problem with my previous approach in javascript so i thought of another strategy, to work with java. How can i pass the DOM of the current web page that is the HTML page to java, so that i can parse the DOM and i need to extract the internal contents of the script tags in the page and evaluate them apart from running in the webpage.
How can i pass the dom object to java and evaluate the scripts contents from java.
but what I need is, after the new window is popped up, the opener will be redirected to another page, I want the another page able to control the popup window is it possible? is there something like getWindowById.
1. Take the current URL of the page and open a new window with a URL based on the current page. Some examples (I use "->" to mean "this URL turns into that URL"):I plan to use these bookmarklets in sequence, first pressing 1 to log into the CMS, then pressing 2 to edit the current page.
I just got this script for a countdown on a website and I got it to work locally but when I upload it to the server i get the error "index.html:22 Uncaught TypeError: Object [object Object] has no method 'fancycountdown'".
I have checked to make sure all other javascript files are loading and they are and I can't figure out whats wrong. You can see it [URL]
We are trying to develop an Engineering application using PHP, Javascript with Informix as the back-end.
Is it possible to retrieve data using Javascript but by accessing the Database. Say somebody enters part_no, than using Javascript is it possible to connect to the part master and retrieve the division and desc information?
I am not allowed to use the PHP because this will require the user to insert the part number on the first page (user input page) and then retrieve the information using PHP and display the info on the second page (processing page).
I will need this to be done on the same page. That means the info will need to be retrieved instantly (on the fly).
I think of building a javascript array for the part master table using PHP but finally decided not to as the table is a huge table (contains more than 1000000 records).
I'm trying to get the x and y cords for a window using "pageXOffSet" and "pageYOffSet" but all it returns is "undefined". Is this old syntax? How do I do this?
I have a form (name="test"). In it, there is manny inputs. To make it easy, there is a buttom beside the input, opening a popup window. In the popup window, I connect's a DB, and find a value I will pass to the form. The link passes a value ex a ID to the spessific input on the form.
I'm not a JS expert or anything, but I was just wondering if it is possible to get the value of an element from its ID. For example, if I have something like (inside a HTML document):
<span id="12345">0</span>
Is it possible to retrieve 0 if I specify that I want to retrieve the value from the ID 12345?
say in textbox its written you, and i erase it and write bingo. how can i retrieve back the old value you? simple solution i dont want to use, i want different way. i do inputhidden where i store the old value always
I need to retrieve the value of a textbox control in a asp.net datagrid using Javascript. Can anybody help out. I believe the control clientID needs to be passed client side so the javascript can reference....
I want to retrieve any web page content using javascript . suppose I logged into my gmail account and opened my e-mail. now i want that a javascript will execute on the page and read all text content from that page (e.g. all email subjects ) and save it in a text file . I may embed the script in my browser. Is this possible ?
Here's the situation. I have a static html page which we want to update to include some dynamic content. I want a counter that keeps track of the number of times anyone presses the "add" button, and display that number. So, that page would look something like:
Number of calls today: 5 Add | Reset
The "5" would increment with every click of the "Add" link. The "Reset" link would reset the counter to 0.
I have a Perl script that does all of the accounting stuff (opens a file that contains the number, increments it, resets it, etc). What I don't know how to do is to get the data from the CGI script to the web page. I'm imagining that you can use Javascript, but I can't figure it out. My CGI script can accept three options (add, view, reset). So it you call it like so [myscript.cgi?action=add], it increments the counter by one.
So, in a nutshell, this is what I want:
1) the web page to display the # of calls upon load. 2) When a user presses the "Add" link, it invokes the CGI script to handle the accounting stuff, then refresh the page with the new number of calls. 3) When a user presses the "Reset" link, it resets the counter to 0.
This is in connection to the tread: Re: changing browser text settings?
I am wondering if there is a way to retrieve the browsers text size (not change! ;-) ) so that I can dynamically resize the size and position of the layers to accomodate larger than normal text-size settings. I really hope there is because it would mean not re-writing the whole page (which I'm not sure how to go about).
I would like to know how I can retrieve html data with jQuery. With my current project I have all pages in 1 html file (jQuery mobile). Every page has his own ID. Page 1 has id="question_1", and the next one is id="question_2".
Now I would like to retrieve this ID and add +1 to the question. So if you press a buton it will always go to the next page.
So I have a div with id "navigation" which contains an <ul>, and the <ul> has several <li> items.What I want to do is to animate the <li> items as i rollover them.My question is , how can I only animate the current <li> I rollover, because right now when I rollover one, all <li> items animate.