I have a website in development that has some similarities to Kaboodle.com. I need a FF/IE toolbar button build that can extract images from a website and populate them into my db for display in my pages. This fucntion will work identical to how kaboodle.com works. I had the firefox buttons developed by some freelances, however they lacked the expertise in javascript to make them work correctly.
I need advise on where to turn to so that I can get a quality finished product. I wish to have the work done and I plan to post up a job but I need to know how to word it. Does anyone have experience with this? Can someone point me in the right direction?
This might be more of a firefox extension development question but it has to do with JS so i'll ask here in hopes of finding someone with experience in this.
My extension requires the URL of the image that was right clicked. Meaning I have added a new option in the right-click menu when an image is right-clicked that calls a function in my JS file
JavaScript Code: imgSrc ();
This function requires the URL of the image that was right clicked to be passed into it. Does anyone know how I would do that?
I am developing a Firefox extension and after upgrading from jQuery v1.2.6 to v1.3.2 I found that including jQuery in the XUL-file will break other extensions that displays buttons on the toolbar, among those is Adblock Plus.
I have not tried any versions between those mentioned so I do not know in what version this happened. If i revert to v1.2.6 everything is OK.
I'm actually doing a firefox extension in which i would like to implement the jWebsocket API in order to build a small chat. I got my main script file, named test.js, and the jWebsocket lib into a js folder. Just for you to know, this is my first firefox extension ever. So in my XUL file I got this :
I have started to work on an extension that triggers when the page has been loaded. The problem I have is that the event is triggered twice. Its almost as if two threads are created when the users navigates or browses web sites. Why does this happen and how could this be changed to only trigger once. I have attached the files. Here is the browser.xul file
I am writing a firefox extension and I need to execute a YQL query everytime the user changes webpage on their browser.For now, all i am concerned with is detecting if their is a webpage change.For example. User is on [URL] then switches to [URL] At this point i need to call a function.So far all i can find is an onload=function()Which is only working once when the browser opens up.
I am trying to make a pop up box that does not have the toolbar, status line, and does not say Java application at top of Pop up box. Here is how I wrote the code. It did not work.
How is made that toolbar on this site always stays on the botom of the page. (So, when we log in, on this site will appears toolbar. When we scroll down, this toolbar stay, it doesn't move anywhere, it stay on the bottom.)
I am currently working on an internal browser based application for my company and I would like to remove the toolbar from the Browser window.
The JSP screens have a typical header, body and footer structure. I have tried putting in a javascript in the header that blocks the back button but it seems to only work on some of the screens. What I would like to do is just remove the whole toolbar tp prevent anymore problems. Unfortunately the Users want keep the address bar and they do not want to have the application pop-up in a new window after they login.
Is there any way that I can have the toolbar disappear after the User logs in and goes to the next screen?
<script> function imgdis () { window.resizeTo(400,500); } </script> <body
However i still need to make this window to be displayed without Statusbar, Scrollbar, etc. I wanted to be stripped so it only displayes the content. Can i do this from the function that i already set?
I have a <'div'> element, containing a <'ul'> with four <'li'> elements. What I need to do is set the <'li'> to display in horizontal orientation, and within the <'div'>. When I apply the JTouch
I'd like to build a toolbar which is positioned as "fixed" ad the bottom of the page (till now even too easy), but at a defined point I want it to change position from fixed to relative, sitting upon the footer of the page and remaining there. Take a look at this exemple, which is perfect.. [URL] To do that I tried to search something on the web, but I've found only this: [URL] Now, the voice sticky elements seems to be what I was looking for but actually it is "upside down" and I couldn't be able to edit it to reverse it.. I'm trying (without any good result) to edit this part of index.php:
Am I right using this script? how can I find something "ready-to-use" on the web? or if there's nothing, how can I edit this one to fix my needs? And first of all... what is the name of this particular function (I mean something which change position while you scroll the page?)
I have recently bought the book: JavaScript & DHTML Cookbook. As I opened the .js files with note pad, I asked myself why was the code formated in such a way. The code looks as if it had been produced by some kind of programs instead of a person. I also noticed a lot of little squared zeros; what are those all about?
I have also noticed code formated in a similar way, when viewing some of the source code of the web pages on the MSN web site. If someone knows anything about this machine-like formating, I would love to hear from you.
I've been doing some research on url names. The problem is, I need this code to return like say "index.php", it would return "index". But idk where I went wrong..
The code: <script> var sPage; var sPath = window.location.pathname; //var sPage = sPath.substring(sPath.lastIndexOf('\') + 1);
I allow people to upload images onto my web server. I want to verify each image is less than 50Kb and is an image type, this is what I came up with Verifying the files extension Code:
I have seen many Javascripts on Internet that checks the extension of the file before uploading. But all these scripts checks the extension when the Submit button is pressed. I want to check the file extension as soon as the file is selected. The script should delete the selected file from the type=file box and display an error message (when a file with the wrong extension is selected).