On Dec 22, 10:51 pm, Schalk Neethling
wrote:
> Hi there,
>
> I was wondering whether anyone knows if the jQuery website has some sort
> of API to access the search functionality of the site?
Stimulus, response...
function searchDocs(el) {
document.location =
All,
I am building a bunch of widgets, and creating standard tests for each
widget. Part of the test involves setting the background color attribute to
a known value, and then making sure that the widget initialization code did
what it was asked to do.
So, on Safari, the code for the checkbox pa
BTW, just to commiserate, you're not the only one who's ever posted
incorrect information here.
Want to hear a whopper I posted a couple of years ago? Someone was asking
how to change the title in the browser window, and I told them that they
couldn't: You only get one chance at setting the title,
This was helpful in determining that the problem is not in what is
coming back from the server, but rather what is sent to it. The full
jquery code for this page is below.
What is to happen is that an input box in my form called ajax is
supposed to be set to 1 when the page loads. This value of 1
I intended no offense, MorningZ, but suggesting that changing a parameter
name from 'row' to 'ThisRow' may somehow fix an IE problem isn't helpful in
the slightest. It's simply incorrect. It won't fix the problem, and it's
only a distraction from finding the real issue.
'row' isn't a reserved word
your JSON
{"results":[{
"postid":"697",
"summary":"boddytest",
"title":"testtitlehere",
"link":"http://
testlink.com",
btw, i realize i am mistaken, as "rows" is a property, not "row"
my bad... i tried though
"Sorry, but that's not right at all"
My point was that IE does run into issue when it comes to reserved
words, which "row" is
and as you can (or obviously can't) tell from my reply, you're right,
i was just taking some stabs in the dark to at least make an attempt
to help. i don't think
Sorry, but that's not right at all. There is no problem with using 'row' as
a function parameter name in IE.
We're veering into Cargo Cult Programming here, but it's not your fault,
MorningZ. The problem is that we can't see the actual code that's going
wrong, so we're all reduced to guessing.
GJ
Ok.I've been banging my head and Google long enough.
I've got two cycle plug-ins running, trying to get them to display
the first image (working), wait 3 seconds (slideshow1), change
slideshow1 image, wait 3 seconds, change slideshow2 image,
wait 3 seconds change slideshow1 image, etc.
J
Thank you MorningZ for your nice reply.
I have tested this with ie8,
function DisplayResult(ThisRow) {
var output = '';
output += '';
output += '';
output += '' + ThisRow['title'] + '';
output += row['summary'];
output += '';
return output;
is there anything available to automatically turn my table , into adjustable
width columns table ?
--
View this message in context:
http://old.nabble.com/make-table-wisth-adjustable-tp26897575s27240p26897575.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.
IE has a really hard time with "reserved words" used as function names
and/or properties
try changing "row" to something else, even "Row" would be different
enough, as IE *might* be thinking you mean a table row
so instead of
function DisplayResult(row) {
var output = '';
output
Thanks much Sime Vidas, it worked! Since mine is an aspx with an AJAX
UpdatePanel, jQuery(document).ready(function(){...}); did not work for
me. So I implented it in the pageLoad as below:
jQuery.noConflict();
function pageLoad() {
jQuery("#CollapseExpandTd").click(function() {
jQuery(
Thanks for that, it was helpful in at least determining that the
problem is completely different from what I thought it was. In IE,
neither the headers nor the Ajax response were the same. It turns out
that the ajaxForm() call is not sending the complete data set from the
form... it is only sending
Ok thank you,
Why does this code work in Firefox etc. And not in internet explorer
7/8.
And how to fix this for internet explorer?
Greatly appreciate it!
On Dec 23, 1:38 am, MorningZ wrote:
> that means that "title" is not a valid property of the "row"
> object
>
> On Dec 22, 5:46 pm, GJK
Most likely you have a JavaScript error somewhere that is preventing
your scripts from running. Post a link if you can.
On Dec 22, 8:15 pm, Peter Laws wrote:
> But thats after the (test) alert box, and I'm not even getting that
> popping up. Surely I should be seeing the alert on submit?
>
> 2
Set a breakpoint in jQuery's httpData function and see why it's
failing.
Mike
On Dec 22, 8:11 pm, dirknibleck wrote:
> I have what I think is a pretty basic function going on that fails in
> IE everytime. The code is below. The javascript is first, followed by
> the ajax response.
>
> In IE,
Hi,
I am extremely new to jQuery and and wondered if someone might be able
to point me in the right direction. I want to add the LavaLamp plugin
to the Superfish menu module created for Joomla. It is located here:
http://users.tpg.com.au/j_birch/plugins/superfish/
The documentation on this site s
I am new to jQuery, and am trying to see if it can be used to
replicate some flash-type UI features that my client wants. I created
a simple demo page that works OK in IE8 and FF 3.5, but looks terrible
on a Mac using Safari. If anyone can help me figure out how to work
around this issue, I'd appre
But thats after the (test) alert box, and I'm not even getting that
popping up. Surely I should be seeing the alert on submit?
2009/12/22 Stumps :
> Use $(this).ajaxSubmit(options); instead of $(this).ajaxForm
> (options);
>
> .ajaxForm will bind a form to automatically post back as ajax while
>
I have what I think is a pretty basic function going on that fails in
IE everytime. The code is below. The javascript is first, followed by
the ajax response.
In IE, the ajaxForm() function doesn't resolve to success, but it does
in FireFox, Opera and Safari
On IE, the error: function() returns
See here:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
On Tue, Dec 22, 2009 at 1:37 PM, Diego wrote:
> I have the following snippet of code:
>
> This is where I'll place the 'li' elements.
>
>
> After processing the file upload I add t
that means that "title" is not a valid property of the "row"
object
On Dec 22, 5:46 pm, GJK wrote:
> The error was wrong, the good one from internet explorer:
> -
> Line: 158
> Character: 2
> Code: 0
> Error Message: 'title' is null or not an object
> U
First: get the Web Developer Toolbar for Firefox
Then run your page in it and if you have JavaScript errors, then the
icon on the far right of the toolbar will be red... you can click it
to view the error...
for example have you assigned values to the fileName and filePath
variables?
Should be pretty easy:
$("#CollapseExpandTd").click(function() {
$("#TreeviewTd").toggle();
$("#MenuBarTd").toggle();
});
The error was wrong, the good one from internet explorer:
-
Line: 158
Character: 2
Code: 0
Error Message: 'title' is null or not an object
URL: http://localhost.com/js/search.js
And it's coming from this function:
-
f
When you use + like you are there, it's trying to add your string to
something.. which isn't a number, hence NaN. Could you not do ppost :
{ 'Path' : $FilePath, 'File' : $FileName } ? That would be my
suggestion.
-- T.J.
On Dec 22, 1:58 pm, Adrian Maleska wrote:
> I've got a little problem with
Providing a link to a live site or using a pastebin type site (e.g.
http://jsbin.com/) is likely your best bet.
aquaone
On Tue, Dec 22, 2009 at 10:30, eleven wrote:
> Hello,
>
> I am new to this Google Group, so forgive me if this is the wrong
> place to ask this question.
>
> I use jquery in a
Hello,
I got this code for search auto suggest and everything works fine in
Firefox, Chrome, Opera etc. But it breaks in internet explorer 7 and
8.
I get this error:
-
Line: 158
Character: 2
Code: 0
Error Message: 'fghds' is null or not an object
URL: http
I have the following snippet of code:
This is where I'll place the 'li' elements.
After processing the file upload I add the elements like this:
$("#file-list").append('' + fileName + ' ');
The thing is, I can't get the onclick event on those links, it just do
nothing when I click on it.
If I
Hello, Experts.
I have used this script to filter s using a text input:
http://ejohn.org/blog/jquery-livesearch/
...however, I am not sure how to modify it now for my latest
requirement.
I have a page of news stories that are written as an headline
followed by a story of s or s or both. I wan
Hello,
I am new to this Google Group, so forgive me if this is the wrong
place to ask this question.
I use jquery in a new web application i am developing, and all is
going well (using jquery, jquery-ui and jqgrid).
The question i have is about representing code in topics in this
group. All item
Below is the snippet of code:
$('.extra_dialog_link').click(function() {
event.preventDefault();
var data = this.id.replace('cn_', "");
//alert(data);
$('.dialog_extra').dialog('open');
I've got a little problem with passing two strings $FilePath and
$FileName to the PHP file and I've got no clue why. When I do it this
way everything's Ok
ppost : {
'Path' : 'temp/',
'File' : 'Myfile.jpg'
},
Of cause I need to do this via variable but
Hi All,
I have the following js function used in an old web app. How can I
translate this to equivalent jQuery code? Appreciate your help!
function expandCollapse_onclick()
{
var treeCell = document.getElementById("TreeviewTd");
var topmenuCell = document.getElementById("MenuBarTd");
Use $(this).ajaxSubmit(options); instead of $(this).ajaxForm
(options);
.ajaxForm will bind a form to automatically post back as ajax while
ajaxSubmit will send the request to the server.
On Dec 22, 9:56 am, Pedster wrote:
> Using:
> JQuery and the Form plug in
>
> my head tag includes
Thanks John.
As far as .live goes, I'm using a very Ajax heavy template (Admintasia
http://www.admintasia .com) and I've made it more so by "Ajaxifying" the
navigation (passing the href attribute to a load function)
.live is the only way that I can get a lot of this to function
$("ul#navig
(function($){
var defaults = {
button: '#buttonId',
form: '#formId',
target: '#targetId',
url:'/change/me',
page: '/change/me/too',
};
clickToLoad = function( options ) {
var o = $.extend({},defaults,optio
.ui-dialog .ui-dialog-buttonpane { text-align: center; }
.ui-dialog .ui-dialog-buttonpane button { float: none; }
- Richard
On Tue, Dec 22, 2009 at 1:44 PM, RobGMiller wrote:
> What is the easiest way to manage button location at runtime?
>
I'm pretty sure it has nothing to do with jQuery. I use $.ajax flawlessly
on Safari. However, I did note that some browsers are more forgiving than
others with respect to the data and the data type matching. Make sure you
are telling your ajax call what kind of data it should expect back from th
I've got a lot of hard coded values in JQuery functions like the one below
$("#getTOByWeek").live("click", function(){
$.ajax({
type:"post",
url:"webapps/hr/admin/actions/act_adminHR_Handler.cfm",
data:$("#toByWeek").serialize(),
cache:"false",
What is the easiest way to manage button location at runtime?
Oh, icon identification fail -- I mistakenly thought the "J" was jQuery, but
it was Jetty... sorry for the noise :-/
On Tue, Dec 22, 2009 at 10:11 AM, lelando wrote:
> It really shouldn't be there, so first, double-check it in another
> browser, and make sure you clear your cache thoroughly.
>
>
On Tue, Dec 22, 2009 at 10:40 AM, Charlie Griefer wrote:
> On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote:
>
>>
>> [ ... snipped ... ]
>>
>> Thanks for pointing me in the right direction. This is what I ended
>> up getting to work:
>>
>>jQuery("span.event", ".calendar-table").eac
On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote:
>
> [ ... snipped ... ]
>
> Thanks for pointing me in the right direction. This is what I ended
> up getting to work:
>
>jQuery("span.event", ".calendar-table").each(function(){
>var html = this.innerHTML.replace(/()\
On Dec 22, 12:09 pm, Charlie Griefer
wrote:
> 2009/12/22 Šime Vidas
>
> > Well, you selected BR elements, which are empty elements, so it's no
> > mystery why this.innerHTML returns undefined...
>
> > Also, DIVs shouldn't appear inside SPANs...
>
> He did state that he's using generated HTML.
It really shouldn't be there, so first, double-check it in another
browser, and make sure you clear your cache thoroughly.
I've had similar errors occur sometimes caused by imperfect browser
extensions or other browser errors. In fact, I've been living with a
bug caused by an extension in FF for
I'm converting qunit to work with selenium. Is there a way to
'restart' the tests. I need to do this to run the tests with another
browser. Thanks!
On Dec 22, 10:34 am, "T.J. Simmons" wrote:
> I'd provide more detail; $.ajax should work in every browser. There's
> more than likely an issue with the script or the response. An example
> of what you're doing would work wonders for helping us figure it out.
>
> - T.J.
> > On 12/22/09, pw wrote:
Hi Scott! Thanks again for the help. I really appreciate it. :)
> Looks right to me. One alternative, which wouldn't break the chain if
> target is not supplied properly, would be this:
Ah, right. That is a smart solution. Thanks for the clarification!
> I don't think it's overkill for your in
I have a page where I've used jQuery. I have not designated a favicon
on the page, but for some reason there is a jQuery logo as the
favicon. How do I disable this?
2009/12/22 Šime Vidas
> Well, you selected BR elements, which are empty elements, so it's no
> mystery why this.innerHTML returns undefined...
>
> Also, DIVs shouldn't appear inside SPANs...
>
He did state that he's using generated HTML. He has no control over it.
Mike - this isn't really a jQ
Thank you very much. This is working.
But it should happen after klicking on a result and not while typing.
Now I try to find the position in the code where the "clicking event"
is written and I can insert this. I think its somewhere in the
jquery.autocomplete.js .
Thank you!
On 22 Dez., 15:
Using:
JQuery and the Form plug in
my head tag includes
I'd provide more detail; $.ajax should work in every browser. There's
more than likely an issue with the script or the response. An example
of what you're doing would work wonders for helping us figure it out.
- T.J.
On Dec 22, 7:45 am, kumari Manohar wrote:
> Remove
>
> On 12/22/09, pw wrote:
Well, you selected BR elements, which are empty elements, so it's no
mystery why this.innerHTML returns undefined...
Also, DIVs shouldn't appear inside SPANs...
No, it does not submit the form after the async request finishes. (I'm
using the latest 1.6)
Ken
On Dec 21, 6:30 am, Jörn Zaefferer
wrote:
> The plugin will submit the form after the async request finishes. The
> remaining problem is that any submit-button won't be submitted. Maybe thats
> the p
function formatItem(row) {
window.location = row[1]; //Send the user to URL 'row[1]'
}
On Dec 22, 7:33 am, Axel wrote:
> Hello Everbody,
>
> i´m using "jquery autocomplete" on my site. In row [1] i put values
> for building urls - and when I klick on it I want to move to the URL -
> and no
On Dec 22, 8:03 am, Dhruva Sagar wrote:
> I would suggest you to wrap the sections within * into a div and select that
> div.
>
> Thanks & Regards,
> Dhruva Sagar.
>
[ ... snipped ... ]
Unfortunately I don't have control of the generated content. The
content is generated by a WordPress Calend
On Dec 20, 10:04 pm, Rob wrote:
> I am having trouble getting my wordpress theme to use the Superfish in
> the nav menu. My problem is I have subcategories that go 3 tabs deep
> and currently it is very tough to navigate through the drop down menu
> so I wanted to get Superfish to work since I h
Remove
On 12/22/09, pw wrote:
>
> I have a script which relies on $.ajax to retrieve data from my
> server. It works flawlessly in Firefox (Gecko), but is broken in
> Chrome and Arora (two webkit-based browsers). Are there known issues,
> or do I need to provide more detail?
>
> pw
>
Not exactly sure why you would want to do that.
Load the first jQuery with jQuery.noConflict();
Then you can access that one by saying jQuery(), and the second using the
default $()
cheers
Michael Lawson
Development Lead, Global Solutions, ibm.com
Phone: 1-276-206-8393
E-mail: mjlaw...@us.ib
I have a script which relies on $.ajax to retrieve data from my
server. It works flawlessly in Firefox (Gecko), but is broken in
Chrome and Arora (two webkit-based browsers). Are there known issues,
or do I need to provide more detail?
pw
Hello Everbody,
i´m using "jquery autocomplete" on my site. In row [1] i put values
for building urls - and when I klick on it I want to move to the URL -
and not to autocomplete the input field (what is the originally
purpose of the autocomplete). So I want the suggested Items to have a
normal "-
hi
I m using 2 jquery in my site
1 is jquery tabs
2 is jquery "has" selectors
both jquery files are different
when I use both tabs are not working in my site
please tell any solution
Thanks in advance
Hi folks,
Using jquery's tablesorting, I've been trying to sort a table that
contains data loaded dynamically/programatically using DWR's addrows
method. The sorter would sort any column I pick but could only do so
in one direction ( i.e. descending order only, not toggable between
asc/desc ) a
Yes i can see that others request a solution, i will search and i'll
tell you if i find something. I thought maybe it's possible with the
callback functions but at this time my tests are not successfull.
Anyway, thanks for your answer.
Thomas
On 22 déc, 04:30, Charlie wrote:
> question is clear
I would suggest you to wrap the sections within * into a div and select that
div.
Thanks & Regards,
Dhruva Sagar.
On Tue, Dec 22, 2009 at 6:29 PM, Mike Walsh wrote:
> Long time listner, first time caller ...
>
> I am struggling with a selctor and am hopeful someone can help me see
> the fores
Long time listner, first time caller ...
I am struggling with a selctor and am hopeful someone can help me see
the forest through the trees. I am using a WordPress plugin which
generates the following HTML:
26
*
Christmas Break
Christmas Break
*
http://localhost/?p=104"; style="">
Futsal T
Hi there,
I was wondering whether anyone knows if the jQuery website has some sort
of API to access the search functionality of the site?
Thanks,
Schalk
Thank you. This gets me very close to what I want. The only problem
now is that when I hover over the top level menu item, the sub-menu
items appear and have a transparent background as well. As soon as I
move focus to a sub-menu item, it takes on the solid background color
I want. Is there a way t
Hi,
I'm really confused here..
I"m using this example to save the state of portlets.
http://jqueryui.com/demos/sortable/#portlets
How can i get the id of the portlet which i'm moving and how can i get the
column id to which i'm dragging?
I gave the id attributes in div for column and for the p
Hi,
I have set the autocomplete for multiple, as shown below. When I use
the tab to select an entry it works fine, but you try using the mouse
then it does not work correctly. Any suggestion on what may be the
issue (using IE7) -
$('#textbox').autocomplete('url',{
minChars:1,
max:20
Hey Richard,
Thanks! That worked perfectly, I'd never have figured that out on my
own, a great help.
Rob
On 22 Dec, 10:29, "Richard D. Worth" wrote:
> See
>
> http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/
>
> Also, if you should have any more questions, note there's a
See
http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/
Also, if you should have any more questions, note there's a separate list
for jQuery UI:
http://groups.google.com/group/jquery-ui
- Richard
On Tue, Dec 22, 2009 at 5:22 AM, Sir Rawlins <
robert.rawl...@thinkbluemedia.c
Hello Guys,
I'm using the jQuery UI plugin to create a modal dialog box to ensure
the user is ready to commit an action. The code sample can be found
here:
http://pastebin.com/m1834215a
Now, when the page first loads and I click the dialog
box appears, however, if I close the dialog box and the
On Mon, Dec 21, 2009 at 11:01 PM, Jojje wrote:
> oh ok :) Thanks for taking time to answer :)
>
> So now i got this, it works but it sends the ajax calls twice. is it
> maybe because i set the callback wrong? the callback argument gets:
> function() { fGbDelete(gbid,link); }
> Shouldn´t it ge
78 matches
Mail list logo