Ziggy Stardust
Absolutely Sane
I have just recently started programming in Javascript because there isn't a front-end developer at this company, so I was assigned the task of getting to grips with it. The project is an editor type of tool which has a submit rule button. When pressed I want a new window which shows the statistics of the project that was created and a message that the project has been saved successfully.
Now I have been searching for a few days for a way to create an integrated pop-up window. The alerts and prompts won't do the trick. I have seen this on websites, so I think it's possible. I just can't figure out how.
What I want is something like:
<html>
<body>
yadi, yadi, yadi
<pop up stuff id="Blah">
html code generated by ajax calls
</pop up stuff>
more yadi
</body>
</html>
So I have 2 questions.
Is this even possible? (if the answer is "no" I actually only have 1 question)
How is this possible?
I'm not using JQuery (yet) just plain old javascript/ajax/html/php/css
Any clues on the matter are appreciated!
Now I have been searching for a few days for a way to create an integrated pop-up window. The alerts and prompts won't do the trick. I have seen this on websites, so I think it's possible. I just can't figure out how.
What I want is something like:
<html>
<body>
yadi, yadi, yadi
<pop up stuff id="Blah">
html code generated by ajax calls
</pop up stuff>
more yadi
</body>
</html>
So I have 2 questions.
Is this even possible? (if the answer is "no" I actually only have 1 question)
How is this possible?
I'm not using JQuery (yet) just plain old javascript/ajax/html/php/css
Any clues on the matter are appreciated!