javascript

Row rendering in Qooxdoo

Hi, I am trying to display rows of my tables in different colors . Please help me to achieve this. Please provide sample code to do same. Thanks. Regards, vyankatesh ...

Formatting Strings in JavaScript to use as HTML "MAILTO" links

Here are some strings that I'm using to ultimately form a HTML mailto link. I'm doing this in javascript. If I output the mailtoString to an alert() I get the link looks just fine. However, when I put it into the location.href the string is cut short at the "&" character. How do I tell the location.href that the "&" is not the end of...

jQuery "Autocomplete" plugin is messing up the order of my data

I'm using Jorn Zaefferer's Autocomplete plugin on a couple of different pages. In both instances, the order of displayed strings is a little bit messed up. Example 1: array of strings: basically they are in alphabetical order except for General Knowledge which has been pushed to the top: General Knowledge,Art and Design,Business Stud...

JQuery: How to find what is between two text points

Hello, Let's say I have this: <div id="wrapper"> <pre class="highlight"> $(function(){ // hide all links except for the first $('ul.child:not(:first)').hide(); $("a.slide:first").css("background-color","#FF9900"); /* The comment goes here. */ </pre> </div> With Jquery, I want to find what is in be...

Firefox Extension needs to get cookie from PHP redirected external page.

I am writing a firefox extension that interacts with a JSON server interface. I receive a url to the server which then redirects to the client site that provides the cookie. I need to be able to set this cookie in the users browser without physically loading it in the browser. Is this possible through an AJAX call? I tried using a hi...

Is it bad practice to not assign a new object to a variable?

Is it bad javascript practice to not assign a newly created object to a variable if you're never going to access it? For example: for(var i=0;i<links.length;i++){ new objectName(links[i]); } And again, I won't be accessing it, so there's no need for a variable to reference it. ...

how to handle base tag target attribute in iphone uiwebview to open new window

When the links are supposed to open a new window, iphone uiwebview won't trigger an event when user click these links. We had to use javascript to do some trick to the target attribute of the links. I can handle 'a' tag to open in the '_self' window with the trick without problem. But when I do it the same way with the 'base' tag. it do...

How to correctly add the .scrollTo plugin?

I have this script, running on a links list: $('li#linkcat-25 a').bind('click', function (e) { e.preventDefault(); $('#preview').load($(this).attr('href')); $('#loading').show('fast'); $('#preview').hide('fast'); $('#preview').show('fast'); $('#loading').hide('fast'); }); How can I easly add a .scrollTo effect,...

one document.createElement, append it twice, only shows once

I have a button I want to use in the beginning and the end of the page: var button_save = document.createElement('button'); $("#compteurs").append(button_save); [...] $("#compteurs").append(button_save); but it only appear at the end of the page. If I remove it from the bottom of the page, it appear at the begining of page. It's a kin...

jQuery.ui.draggable.js and jQuery.ui.widget.js conflict

hello I had a working application, which uses a jquery ui dialog. I wanted to make the dialog draggable. As far as I know the only thing needed is the jquery.ui.draggable.js script. So I added it to the scripts I am using, but know I get the following error (as shown in the firebug console): base is not a constructor The relevante line ...

Is there a way to get a reference to all the paragraphs or headings in a web page in JavaScript?

I'm writing a simple Greasemonkey script to strip out all the images, headings and paragraphs from a web page (it's because someone wants to use images of several popular websites with the images and text removed in a presentation about branding of websites). I've figured out how to do so with images by using a for loop and the document....

accessing embedded object with jquery not working in firefox 3.6

Hi, this code in my plugin used to work just fine: jQuery('#embedded_obj', context).get(0).getVersion(); and the html... <object id="embedded_obj" type="application/x-versionchecker-1.0.0.1"></object> Basically trying to get the properties from an embedded object. But it looks like get(0) is returning an html object instead of th...

jQuery function in .click() etc

Hi all. So normally, I do it like this: $('#selectRoom a').click( function(e) { e.preventDefault(); // To prevent the default behavior (following the link or adding # to URL) // Do some function specific logic here }); However, I would like to do it like this, to clean things up (and be able to reuse): $('#selectRoom a').click( sel...

Javascript Instance Variable Syntax (AJAX page refresh)

I'm having difficulty with Javascript instance variables. I'm trying to make an easy way to refresh the chat page, looking for new messages. The AJAX call supplies a mid, or the lowest message id to be returned. This allows the call to only ask for the most recent messages, instead of all of them. MessageRefresher.prototype._latest_mid;...

in jQuery, why are we using this ({ })

I wonder that, why are we using ({ }) ? Is it delegate ? What does it mean to use this syntax ? What are we wrapping with it ? For ex: $.ajaxSetup ({ // <-- THIS error: fError, compelete: fComp, success: fSucc }); // <-- AND THIS ...

Why do jQuery fadeIn() and fadeOut() seem quirky in this example?

I've been playing with jQuery in an ASP.NET project and am finding some odd behavior with the .fadeIn() and fadeOut() functions. In the below example, a click on the button (ID Button1) is supposed to cause both the span of text with ID Label1 and the the button with the ID TextBox1 to do the following things: Fade Out Change the text...

How can I Mimic Gmail's Basic HTML option

Does anyone know to quickly implement an alternate version of my site with just basic HTML like how GMail does it? ...

jquery return false in form

<script LANGUAGE="JavaScript"> function confirmSubmit() { jConfirm('Is the Appointment Confirmed?', 'Confirmation Dialog', function(r) { if(r){return true;} else {return false;} }); } </script> <form name='cancel_form'id='cancel_form' method='POST' action=""> <center><input type='submit' name='confirm_appointment' value='Cancel Appointm...

Adding javascript to every occurrence of a certain HTML element

I was wondering if there was a way of adding javascript in every occurrence of a certain HTML tag, eg. <td onmousedown=""> At the moment I just have it in every single one of my td tags in my table, but there must be a cleaner way. Something like adding javascript in the way CSS adds formatting. ...

how to show a pop-up message(like this site) on submit form

hello i use of php and jquery in my application i want when users submit success a form in page1 , forward form page1 to page2 and show a pop-up message(like this site) "success" and when they do not submit success , dont forward and just show pop-up message "error" how i can implement this process? thanks? ...