what is the industry standard to implement a service like uservoice, getsatisfaction
I want to find out the industry standard for creat a service that is embedeble in websites. Just like uservoice, getsatisfaction, getclicky etc. ...
I want to find out the industry standard for creat a service that is embedeble in websites. Just like uservoice, getsatisfaction, getclicky etc. ...
Currently, I am using Rhino engine to execute some big blocks of javascript code on the server side. However, sometimes, it takes so long(more than 10 minutes) and eat up all CPU usage (at least on my local development env, it is doing this right now). So I am wondering that what I can do to improve the current system or I can try a new...
i want that people get my button and put on their sites...javascript???? ...
Hi guys, I got a vertical testimonials belt and i have this method that animates its top value with a calculated value (depending on the height of the current testimonial) every few seconds. Now when a user hovers over it, it stops right away (via .stop() and also the interval is cleared via clearInterval(idOfinterval) But i stil...
Because using .toString() for null vars doesn't work, and I can't be checking each and every one of these in my particular application. I know this is a stupidly simple problem with an answer that literally must be staring me in the face right now. ...
I have a function that tracks the user's mouse to show them visually where they are on an x,y grid. When the user's mouse is over the image, a function is called via onmouseover="gridFunction();" The problem is that I want to record the user's click (onclick or onmousedown) as they move around the grid image. So I'm trying to stack an o...
A quick question of perhaps a more speculative nature. I've been getting heavy into jquery lately to handle all the ajax in my web apps. Right now I'm building a bidding system in PHP that makes heavy use of mod_rewrite. I'm using jQuery with a confirm dialog to send an Ajax request that will spend some of the user's predeposited cred...
Hello I have a multiselect box, whose answers would be available already. Now when a page loads, this select multiple control would load with options, and I have to compare all the options to this answer/answers and display them as selected. It is working fine in FF but not in IE. var op = newSelectorElm.options; if(op) for(v...
I have a regular onkeydown event handler that fires a function, like this: window.onkeydown = onKeyDown; It essentially works, but it only captures 1 key in Firefox. Then I have to release it and press again. Google chrome offers me a continuous grab, so I wonder if this is by choice. ...
I have index.php page and I have this there $pv->showHidden = isset($_POST['showHidden']) ? intval($_POST['showHidden']) : 0; $pv->sendHidden = isset($_POST['showHidden']) ? 0 : 1; and then I have this <input type="image" id="btnShowHidden" src="images/hide.gif" onclick="showHiddenRecords(<?php print $pv->sendHidden; ?>);" /> I...
I found some code on stackoverflow that inserts text from a text input field into a textarea at the cursor location. What I want to do is modify this working code so the user can enter a URL with Title text into two form input fields, build a complete hypertext link from the input and insert the resulting HTML for the anchor tag into th...
So I have an element that has an onClick event thusly: var foobar = $('element').addEvent('click', function() { // some code here }); But I want to call the action from somewhere else in the script, would it be possible to do such a thing, i.e." foobar.click ? ...
I will be reading a tag from xml and assign it to a variable, ID. ID=(x[i].getElementsByTagName("ID-NUM")[0].childNodes[0].nodeValue); How could I use the variable, ID, as the button value to display? document.write("<input type = button value = ID style='width:100'><br><br>"); Kindly let me know if I an not clear, thanks. ...
I have a page that has a button, that when clicked opens up a jqueryui popup window. the window has a list of items, each with a checkbox beside it. i want the selected items to be passed to the parent page when they hit the 'add' button on the popup. The items should send back the values selected, and inject that into a textbox. ...
saveButton.setStylePrimaryName("jtyfj"); If I do that to a button, it removes the default "gwt-button' class and replaces it with 'jtyfj'. My question is, is there a way to apply this yo all buttons by default. I'd really rather not have any default gwt-styles being referenced. Also, is there a way to do it with a ClientBundle CSSReso...
Again, I am working with code from my predecessor and am at a loss for this one. It appears to be a sampled navigation script. It is receiving an error in IE stating 'Object doesn't support this property or method'. Here is what I have narrowed the error down to. The function: /** * hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+ * <h...
I want to be able to insert a Java applet into a web page dynamically using a Javascript function that is called when a button is pressed. (Loading the applet on page load slows things down too much, freezes the browser, etc...) I am using the following code, which works seamlessly in FF, but fails without error messages in IE8, Safari...
I used to believe that you should not insert javascript blocks <script language="javascript"> <!-- //--> </script> into the body part of a (what, HTML, XHTML?) document, but rather into the head. But is that still true? ...
Just wondering what are the actual benefits of using HTML5's sessionStorage when storing HTML content to be used in a Javascript carousel? Is it performance related? Load Times? Bandwidth? ...
Is there any way to determine how many or what functions are defined at certain scope?, let's say the global scope... I don't think so, but I give it a try here EDIT: looping through window properties does not work in IE for this purpose. Is it doable in IE? ...