473,796 Members | 2,483 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is it possible to implement pop-up window without Javascript?

GS
Guys:

I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.

GS.

Oct 12 '06 #1
8 1830
GS wrote:
Guys:
Presumptive already.
...Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker.
I take it, then, that you are uninterested in the ethical aspect of
forcing a pop up on the visitor.

Perhaps your question would be better asked on some crackers' or
spammers' forums instead of cross posting to legitimate newsgroups.
Oct 12 '06 #2

GS wrote:
Guys:

I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.

GS.
No can do. Pop-up blockers (includeing the one in IE6 SP2 can be set to
block all pop-ups, it just blocks all windows from opening, unless I
tell the blocker otherwise.
--
Regards Chad. http://freewebdesign.cjb.cc

Oct 12 '06 #3
GS wrote:
Is it possible to implement pop-up window without Java script,
Yes.
we don't want to use java script since it might get blocked by pop-up
blocker.
What makes you think that pop-up blockers only affect those created by
scripts?

Mike
"Java script" is one word - it otherwise implies some significant
relationship with Java, and there is none. JavaScript (capital J,
capital S) refers to a specific ECMAScript implementation. Javascript
(capital J, or all lower case) is conventionally used, at least in
c.l.javascript, to refer to ECMAScript implementations in general.
Oct 12 '06 #4
Michael Winter wrote on 12 okt 2006 in comp.lang.javas cript:
GS wrote:
>Is it possible to implement pop-up window without Java script,

Yes.
>we don't want to use java script since it might get blocked by pop-up
blocker.

What makes you think that pop-up blockers only affect those created by
scripts?
If there is one thing off-topic in this NG,
it is questions stipulating that javascript must not be involved.

and Java script does not even exist.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Oct 12 '06 #5
Use a div made to look like a popup. When not in use set the visibility
of that div to hidden and when you want the div to "popup" set the
visibility to visible. You will of course have to pay attention to the
positioning of that div.

Hope that helps..

Nathan

GS wrote:
Guys:

I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.

GS.
Oct 12 '06 #6
Good point..

Maybe I assumed to much on that question. I thought GS was really
asking how do you get a popup to work even when a popup blocker is on.
In wich case the solution I suggested would work.

Nathan

Ed Jay wrote:
dadof6 scribed:
Use a div made to look like a popup. When not in use set the visibility
of that div to hidden and when you want the div to "popup" set the
visibility to visible. You will of course have to pay attention to the
positioning of that div.

Hope that helps..

How do implement your scheme without using js?

Nathan

GS wrote:
Guys:

I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.

GS.
--
Ed Jay (remove 'M' to respond by email)
Oct 12 '06 #7
GS wrote:
I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.
Maybe you mean something like
http://www.nicoschuyt.nl/test/tooltip-brucie-thingy.htm
(CSS tooltip on mouseover)

--
Nico Schuyt
http://www.nicoschuyt.nl/
Oct 12 '06 #8
Nico Schuyt wrote:
GS wrote:
I have a question, Is it possible to implement pop-up window without
Java script, we don't want to use java script since it might get
blocked by pop-up blocker. Thanks in advance.
If you want to do stuff in a browser client-side but don't want to use
javascript, your choices are HTML or CSS. It seems more appropriate to
post in a newsgroup dedicated to the technologies you want to use,
rather than those you don't.

CSS
<URL:
http://groups.google.com/group/comp....l?lnk=li&hl=en
>
HTML
<URL:
http://groups.google.com/group/comp....s?lnk=li&hl=en
>
Maybe you mean something like
http://www.nicoschuyt.nl/test/tooltip-brucie-thingy.htm
(CSS tooltip on mouseover)
The position of the "tooltip" seems defective in non-IE browsers.
--
Rob

Oct 12 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1971
by: Danny | last post by:
Hi, I am writing a C program trying to read highlighted text in aother application (Acrobat Reader or Microsoft Office). How do I find out which application is on focus and grab the text highlighted? Thanks. Danny
21
2053
by: Morten Aune Lyrstad | last post by:
I wish to create my own assembly language for script. For now it is mostly for fun and for the sake of the learning, but I am also creating a game engine where I want this system in. Once the assembler is done I will develop a simple script language/compiler which uses this assembler. What operators do you suggest I implement in it? Yours, Morten Aune Lyrstad
14
1421
by: Alex | last post by:
Hi, I have a question regarding to string variable. Please look at below example. ------------------------------ #define STR "ABC" char *testStr testStr = STR;
0
1170
by: olsongt | last post by:
This one made me smile. From: http://aima.cs.berkeley.edu/python/utils.html#Queue class Queue: """Queue is an abstract class/interface. There are three types: Stack(): A Last In First Out Queue. FIFOQueue(): A First In First Out Queue. PriorityQueue(lt): Queue where items are sorted by lt, (default <).
2
19338
by: hakimks | last post by:
You are provided with a sample C programs: calc.c, which implements a reverse polish notation calculator. Study it carefully. This program uses a stack (of course!) but the stack implementation is missing and you have to add it. You are to use the linked list structure defined within the program, to implement a stack. In short, you need to implement the functions pop() and push() using a linked list. You are provided with calc-array.c which...
2
5034
by: sekitoleko | last post by:
This operation involves push/pop operations on a stack,arranging the smaller discs to sit on larger ones.How can I write a program to implement this?
2
2572
by: Thomas Ploch | last post by:
Hello folks, I am having troubles with implementing a timed queue. I am using the 'Queue' module to manage several queues. But I want a timed access, i.e. only 2 fetches per second max. I am horribly stuck on even how I actually could write it. Has somebody done that before? And when yes, how is the best way to implement it? Thanks, Thomas
1
1351
by: stmfc | last post by:
i have implemented famous producer consumer example for multi-threading tutorials, to have some insight about multi-threading. there is producer thread which inserts into a buffer, if the buffer is not full. if the buffer is full it waits. there is a consumer thread which removes from the buffer, if the buffer is not empty. if the buffer is empty it waits. although my implementation works succesfully, i am suspicious about my design, it...
10
1529
by: =?iso-8859-1?B?QW5kcuk=?= | last post by:
In my application, I make use of the Borg idiom, invented by Alex Martelli. class Borg(object): '''Borg Idiom, from the Python Cookbook, 2nd Edition, p:273 Derive a class form this; all instances of that class will share the same state, provided that they don't override __new__; otherwise, remember to use Borg.__new__ within the overriden class.
0
1008
by: =?Utf-8?B?U2llZ2ZyaWVkIEhlaW50emU=?= | last post by:
I think SetWorldTransform/GetWorldTransform/ModifyWorldTransform are the functions I want. Does anyone have an example that implements a stack? (1) I want to call SetWorldTransform in MM_ANISOTROPIC (why does not this work?) (2) Draw some rectangles. (3) Call ModifyWorldTransfom to draw more rectangles inside the last rectangle where the origin is now the upper left corner of the last rectangle. (4) repeat step 3.
0
9528
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10455
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10173
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7547
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6788
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5441
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4116
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3731
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2925
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.