Im trying to find out a good JavaScript library that can create a nice "inner-window" popup within a page on my site.
I would like to not have to worry about screen ... |
Is this doable in either IE7 or Firefox?
|
I don't know much about web app dev, and I want to make make a div always showing on the left most side of the browser window, like the red 'feedback' ... |
I would like to create a div using css that resizes with the window.
Example:
#container
{
margin: 3em;
...
|
I've had a project dumped on me where I have to debug an issue with a Javascript "panel" popup that is not allowing Javascript to be executed within it. I believe ... |
I know about window.onhashchange but I'm wondering.. can I check for the hash change of just a particular div and all of it's content's and children div's a similar way? (rather ... |
I have a contenteditable div, like so:
<div id="test" contentEditable="true" style="width: 600px; height:300px;">Lorem ipsum dolor sit amet</div>
for which I use the following code:
<input type="button" value="Click me" onclick="alert(window.getSelection().focusOffset.toString());"></button>
Clicking on the button when I ... |
|
I'm struggling for a while positioning a div at 100px from the imaginary center of the window.
My code is doing: middle window / 2 + 100px and is not what I ... |
I want to simulate a block dialog like window.alert(), window.confirm() or window.prompt() with DIV+JavaScript. It seems easy using a callback function. But I want to block the process while the confirm ... |
I have this content box on my site, that has different tabs on the side and when you click on one of the tabs, it uses JS to hide/show the according ... |
I am currently developing a page with a very large and focal background image which can move and will change depending on window size.
On top of this image I have a ... |
Hi guys Just wondering can you have a Javascript function that uses something like the window.location to open a html page in a div? The reason we need this is we have a current system that uses a url to redirect to a page that used to appear in a popup (using window.open) but now the powers that be want page ... |
sorry folks, I'm sure this is a newbie question. On my website I have one DIV (id="menu") with position:fixed that serves as a fixed menu bar. Then comes the second DIV (id="content") that holds the whole content of the site (genealogy reports rendered by PHP from SQL). I want to put a Javascript searchbox in the menu, that searches in the ... |
|
|
Hi I'm using a dynamicaly drawn marker in a "canvas" tag to signify selections in a custom browser widget and rather than creating a separate marker for each item, I'd like to create one and just move it when a user clicks something in the widget. I know about the coordinates on mouseDown and also how to get div coordinates using ... |
|
|
dude... iv been scouring google all morning trying to figure this out... i never really searched for exactly window.onresize though, because i was looking for examples of how to position a div. plus im really not good at javascript yet. I think I should be able to get this working now tho |
|
Is this possible? I have a website, two divs. The right div is fixed position. However when the user browser window, is less than the height of the div, i need it to be no longer fixed, but to scroll with the rest of the page. I imagine the logic to be the following: -detect div#right height -if window-height is less ... |
|
|
I like to have a js/css script to create div as window into the main document. at lest I need - resizable (user can resize the window) - title, bg and border changeable by css - user able to move the div/window Do you know any script for this purpouse? I've seen some but too complex & heavy, even requiring other ... |
With IE and Firefox ignoring some height values, such as height: 100%;, etc... I was hoping to find out if there is a little snippet of js code that I can use to alter a div's height based on the browser's window size. Does anyone have any links or a snippet of code I can play with? Thanks, Bryan |
Hi all At the moment, I have a page listing keywords associated with an image. The user can click an 'add keyword' link, which loads a child window where they have a form to select & add extra keywords. Now, at the moment when they submit the form, the page reloads the parent window using an onload event. However, I would ... |