I've developing a Google chrome extension and I'm wondering what are the different options available to me when adding dialog boxes? I need something which has it's own head and body elements. Basically my Dialogs will be custom stlyed forms with some JQuery. What are the options available to me? I'm already aware of iframes but is there anything else available for this?
Chrome API doesn't provide any help with dialogs. So whatever you can do with a javascript (+jquery +plugins) is what you got, just like on a regular html page.
Related
When an event occur in a web page maybe a function be ran, of course if web designer has been assigned some codes to it and make require links.
But there are different ways to link the codes and events, especially when we are using a framework like jQuery! For example when we want assign a function to Click event of a Button or Checkbox , we can find it by different selectors and do this in the web page or in an external JS file and import it and....
Now i want now what are your suggestions to find the codes under an events (for example click event on a Checkbox) quickly.
Which lines and where?
I now i can discover the web site codes and pages to find it but i'm looking for a quick way and want know what is your suggestions...
Do you recommend some tools? Please explain them.
Developer Tools in your browser will help, and the search function build in
Does anyone know if there is a option buried in Firefox to turn off validation per specific file? I like to use the Web Developer Toolbar to alert me if I have errors in my own javascript and css but when I use jQuery and the jQuery UI libraries it always gives me an error. I know that these are made to be cross browser compatible and will not validate but using these defeats the purpose of using the Web Developer toolbar. I have looked through all the options and can't seem to find anything.
Or does someone know of another nice add-in that will do what I want?
Thanks for the help!
My legacy UI application has HTML popups that I'd like to convert to Modal popups in Javascript. Any pointers would be highly appreciated.
You can use an IFRAME with something like jquery's modal dialog. I usually find JavaScript modal popups are not entirely modal. E.g. they rely on CSS to position a container over the top of the screen to capture all non-dialog events, but keyboard access is usually still possible. This one is pretty robust though: http://www.ericmmartin.com/projects/simplemodal/
Using an IFRAME would be the easiest transition from real popups to pseudo JS popups as the documents served within the popup would require little modification if any.
I have a Google Custom Search I'm using for a site I'm working on (the search is restricted to this one site). As part of the results you can specify "refinements". These refinements appear as tabs but I want them to appear as links. I do not see anyway to control this nor do I find anything in the docs about how to control this. Anyone have any experience with this?
On Google's own examples they appear as links, like so: http://code.google.com/intl/en/apis/customsearch/images/refine_treatment.png
However all I can get are tabs, like so:
http://2.bp.blogspot.com/_HUb2ygrQR50/TCHcpRiZS8I/AAAAAAAAEPc/m9R1yA2lZaw/s1600/SupportLineRefinement.png
How can I control this?
Actually, I do not think it is possible to do this. I think the tabs are your only option.
The reason why you see links in the google example, is because it's the old version, similar to the iframe option. You're using the new search element.
As far as making them into links, not hard to do using some CSS with !important, to make them look like links.
I want a single online web page for my bookmarks. The page should include small windows which opens the following pages:
Fizy, Facebook, Guardian.
There should also be a button for adding a new window with an URL text input.
Here's an illustration of how the page should look: http://i54.tinypic.com/2hrkb48.jpg
I've built a version of this at http://bit.ly/heqEd1, but as you may see, it uses iframes under javascript windows, which can not open frame-breaking sites (like fizy.com), or Facebook.
I'll make the research and but I am not sure how to proceed. Any solution will be accepted, like HTML5, XUL, Flex, AJAX or others. A solution with a local installation(like a Firefox extension) is not preferred, but still be ok.
Note: Piro Sakura has built a Firefox extension called split-browser. There's an element of the project called "subbrowser". An AJAX window that can show a subbrowser MAY solve the problem. I know the page will only be available from Firefox, but that is ok. (Again, a solution without an installation is preferred)
Any suggestions? How should I proceed? What should I learn? Is this possible?
Thanks.
I think you should use a Javascript with iFrames to do this. I'm not too sure what you're trying to accomplish with this, but it should be possible. As for which framework you'll use, it's up to you, but there will be a lot of custom code needed to implement this.
You can make multiple draggable windows in FLEX same as you have in you app
Please check sample as Starting point Movable/Draggable window and its demo
also u knows JS-DESKTOP lib with little customization to achieve that one of them are
jsdesk
sonspring-JQuery based
also you can do this using
Hopes that helps