|
I am totally new to JavaScript or jQuery. Actually I am developing a web application under which I need to access some data in url format and I want to display a small popup window on mouseover event on this url and on occurrence of this event, url will...
Started by Sham Sehgal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This should roughly look like:
<.
A javascript section to receive the server response in a popup.
|
|
For someone looking after a small 50 Windows PC network (Mainly XP - some Vista), (all genuine copies), what would be the effect of ignoring the constant "Windows Genuine Advantage Install" pop-up prompts?.
Often when someone runs "Windows Update", they...
Started by nzpcmad on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
When critical Windows security updates are released, I unfreeze the machines and selectively install the updates....
I don't know how the PCs are managed where you work, but most groups of computers I've dealt with are running the Deep Freeze utility .
|
|
I am using Windows Form application. I want to open a small textbox on a window to enter user's name or Email in Starting for the program.
How can I achieve this?
Started by openidsujoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe the answer to this question will help:
What is the C# version of VB.net’s InputDialog?
Write one, 'tis almost trivial (creating the form and adding label, textbox and buttons) and using the VB one is perputating something that was only put in to... .
|
Ask your Facebook Friends
|
Well the title says it all is there any way to set the minimum size of a popup window?
Edit: My problem is that when some one and makes it as small as he can the content just looks stupid...
Started by Petoj on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Simply place an onload event inside your pop-up window:
window.onload = function() { if (document.body.scrollHeight) { var the size of menu+address bars ....
It means you can change the height and width of the window when the pop-up loads.
|
|
I have an app that I'm writing a little wizard for. It automated a small part of the app by moving the mouse to appropriate buttons, menus and clicking them so the user can watch.
So far it moves the mouse to a tree item and sends a right-click. That ...
Started by DougN on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A prefect way to do it, but the following works pretty well:
//in my case, the menu is a popup from a tree.
|
|
How can I create a Popup balloon like you would see from Windows Messenger or AVG or Norton or whomever?
I want it to show the information, and then slide away after a few seconds.
Edit: It needs to be blocking like Form.ShowDialog() because the program...
Started by Malfist on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Small code.
Be sure however to first set the text, and icon properties on the notifyIcon for it to work .
RobMisNotifyWindow.aspx which has code to display an MSN Messenger-like notification window
You can use the notifyIcon on that.
|
|
I want to create a draggable and resizable window in JavaScript for cross browser use, but I want to try and avoid using a framework if I can.
Has anyone got a link or some code that I can use?
Started by Dan on
, 8 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Just trying to avoid large framework downloads to the client for one very small thing, perhaps I am.
|
|
In Windows XP you could collapse the Quick Launch menu (next to the Start button) on the Task Bar so that instead of seeing, for example, 5 icons, you'd just get one of them and a drop down (up?) arrow to access the others via a menu.
In Windows 7 it ...
Started by Clay Nichols on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Then try using small icons or, copy all of those icons to a folder and then add a new toolbar.
|
|
Is there a good way to determine if a person has a popup blocker enabled? I need to maintain a web application that unfortunately has tons of popups throughout it and I need to check if the user has popup blockers enabled.
The only way I've found to do...
Started by Chris Conway on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Opera still returns a Window object when a popup is blocked, so you have to examine the object....
I don't think there is any way of detecting this without attempting to open a window, as popup" isn't sufficient for all browsers.
|
|
I am using jQuery to simulate a popup, where the user will select a series of filters, which I hope to use to rebind a ListView in the original window.
The "popup" is opened via an ajax request and the content is actually a diferent aspx file (the rendered...
Started by Juan Manuel Formoso on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Div.yourthingie").hide();
Will hide the part you want to show :) Instead of generating the popup on the fly, leave a small part already made, and hide it in the begining, when you need to show of the AJAX bits working properly, I would....
|