Hi all,
I am hoping to use a 3rd party script for a simple JQuery photo slider
for my WP blog. But the script creator says:
"If you are trying to 'include' this into a blog template then you
will need to have a good knowledge of the template structure and how
it is pulling the information from th
Hello Friends ,
How to resize the image using jquery ,
Thanks
B.S..Bharanikumar
This code seems to work great in FF and Safari, but IE seems to interact
with it differently.
[code]
$('a.moveup').click(function(event) {
var href = $(this).attr('href');
$.get(href);
var $thisRow = $(this).parents('tr:first');
var $thisTable = $('#main_table');
Hi
Prototype used to support IE5.5, but I don't know for the current versions.
It may be easier than to do everything by hand and workaround weird
browser bugs by yourself
Rodrigo wrote:
Hi everyone!
I've been doing some research and I've found different opinions about
the compatibility of
I'll tell my boss you said that! xD
On 18/06/2009, at 17:06, "Andy Matthews"
wrote:
If you haven't already done so, you might increase your fee by a
significant
amount for having to spin your wheels supporting IE 5.5. Whatever
work needs
to be done is going to take lots of extra time
I wish I weren't serious!
It's an internal website for something like 400 users, a hundred of
which are using ie5.5 :-(
Worst part is that they just told us this after a month of coding a
VERY jQueryish site T_T
Someone please shoot me xD
On 18/06/2009, at 16:55, James wrote:
Are y
On Jun 18, 2009, at 5:38 PM, shaded wrote:
is is possible to trigger mutiple events in sucession? each depending
on the previous?
This might help:
http://brandonaaron.net/blog/2007/06/5/bind-multiple-events-simultaneously-with-jquery
--ravi
That error has nothing to do with jQuery-1.3.2.js, it's one of your
scripts. You're missing a semi-colon or have some unclosed quotes, or
you're trying to use a function that doesn't exist. Are you using
Firefox with the Firebug plugin to debug? If not, do it, it should
give you a more detailed de
Could you be a little more specific? Maybe with an example?
Hi,
I'm loading a dynamic iframe (Google Moderator) and trying to change
elements of DOM which are built by scripts inside this iframe, to no
avail (the callback is called too soon, before the iframe is ready).
Here's an example:
$(document).ready(function() {
callIframe('http://moderator.app
Hi folks!!
I'm working with ajax validation in a sign in form. My validation is
perfect, but I need to back focus to previous field, if validation
against previous field return false.
I'd tried something like this:
$("#myInput").blur(function(){
// All validation code
if(!valid){
I have this within my page to open a page manually:
$.nyroModalManual({
url: '/thankyouPage.cfm'
});
Is there a way to pass URL parameters to the URL attribute?
I tried HASH, but that didn't work.
Thoughts?
Thanks!
Hi all,
Here are the lines from the jQuery library:
2191// Check to see if an attribute returns normalized href
attributes
2192div.innerHTML = "";
2193if ( div.firstChild && typeof div.firstChild.getAttribute !==
"undefined" &&
2194div.firstChild.getAttribute("hre
What were the version number of the older versions of jQuery you were
using?
On Jun 18, 11:50 am, waseem sabjee wrote:
> are you perhaps using an @ sign in any ajax posts or gets ?
>
> On Thu, Jun 18, 2009 at 11:44 PM, bombaru wrote:
>
> > Yes. A lot of other scripts. I have started to commen
not sure if this will help you or not but IE tester has an IE5.5 script
engine, as well as 6,7 &8
http://www.my-debugbar.com/wiki/IETester/HomePage
Rodrigo Sebastián Alfonso wrote:
Yeah, I thought so, but it's not an option to me to work
without Win 95 (yes, I also said WTF). Client needs!
are you perhaps using an @ sign in any ajax posts or gets ?
On Thu, Jun 18, 2009 at 11:44 PM, bombaru wrote:
>
> Yes. A lot of other scripts. I have started to comment out the
> scripts one-by-one and will see if I can locate the offending one. Is
> there any reason (that you might know of) w
The Project restriction seems to contradict the project itself.
as transfering the data to the popup window would be a form of ajax.
the only way i see this posible without using ajax is to do the following
OnSubmit save the results in a database then open up a standard javascript
popup which so
Yes. A lot of other scripts. I have started to comment out the
scripts one-by-one and will see if I can locate the offending one. Is
there any reason (that you might know of) why this is happening in
1.3.2 and not older versions of jQuery?
On Jun 18, 5:18 pm, James wrote:
> Do you have othe
try removing your custom scritps 1 by 1 until the error stops or reduces.
then post the script here when you find the right one.
note : do not trust specific lines as you are using a library there may be a
refference in a specific script causing this.
On Thu, Jun 18, 2009 at 11:18 PM, James wrote
is is possible to trigger mutiple events in sucession? each depending
on the previous?
Do you have other scripts running on the page aside from just jQuery?
Such as other scripts that rely on jQuery?
On Jun 18, 11:00 am, bombaru wrote:
> I switched to the development version of jQuery so I could actually
> see where the offending line was. I'm still getting the same error,
> but
thanks ravi. i appreciate the help!
On Jun 18, 4:26 pm, ravi wrote:
> On Jun 18, 2009, at 2:03 PM, mojoeJohn wrote:
>
> > so how do i only act on one logo at a time without having to
> > individually number each logo on the page?
>
> Use "this". I am a newbie myself, so you will need to iterate
I switched to the development version of jQuery so I could actually
see where the offending line was. I'm still getting the same error,
but obviously the line number has changed (which will be more
helpful). Sorry.
Here's the error in the development version:
Script: http://localhost/js/jquery
Anyone know why I might be getting and "Unresponsive script" warning?
I'm running 1.3.2.min. The Warning pops up and states the following:
A script on this page may be busy, or may have stopped responding.
You can stop the script now, open the script in the debugger, or let
the script continue.
Hi all,
I am getting the above error which is part of the jQuery library when
running my application through SonicWall reverse proxy and all the
javascript using jQuery is no longer working. Has anyone had the same
problem or if you know of any suggestions on how to fix this?
Thanks,
Angela
I have the following requirement for functionality in the sequence
listed, I wish to implement this in JavaScript preferably JQuery where
possible can anyone help me with any pointers how I can do it? One
restriction we have is that we can not use any AJAX.
Page1
1.A user hits the submit button
2
Hello,
I wrote a little FIrefox extension, and i have a some problem.
This is code is working:
function testAjax() {
doc = gBrowser.selectedBrowser.contentDocument;
$.ajax({
type: "POST",
dataType: "html",
url: "http://testsite/";,
success: function(data) {
alert (data
On Jun 18, 2009, at 2:03 PM, mojoeJohn wrote:
so how do i only act on one logo at a time without having to
individually number each logo on the page?
Use "this". I am a newbie myself, so you will need to iterate over
this modified version of your code to get it right:
$(document).ready(
you're each idea is right on track
$(".logo").each(function(){
$(this).hover(function(){ /// *this* within an *each* will
single out the individual .logo you hover over
$(this).find(".caption").animate({opacity:"show"},
"fast");// look within this .logo only
}
If you haven't already done so, you might increase your fee by a significant
amount for having to spin your wheels supporting IE 5.5. Whatever work needs
to be done is going to take lots of extra time because you'll have to write
everything in plain JS with little support for new functionality.
I
Something like this:
$(".logo").hover(function(){
$(this).children(".caption").animate({opacity:"show"},
"fast");
},
function(){
$(this).children(".caption").animate({opacity:"hide"},
"slow");
});
Are you serious?
I guess you're just going to have to give them the reality of the fact
that that's the way it is. Things aren't going to work as expected
with legacy software. Is IE5.5 the only browser you have to design
for, or just one that you also have to accommodate for?
On Jun 18, 9:45 am,
Yeah, I thought so, but it's not an option to me to work without Win 95
(yes, I also said WTF). Client needs!
Thanks anyways James! :-)
On Thu, Jun 18, 2009 at 4:33 PM, James wrote:
>
> jQuery is listed on the website as compatible with IE6+, so that's
> probably it.
>
> On Jun 18, 7:32 am, Rod
var timer = 2000;
setInterval(function() {
$("body").prepend("Testing");
}, timer);
On Thu, Jun 18, 2009 at 9:36 PM, James wrote:
>
> Try:
>
> playSlideshow = setInterval( slideSwitch, 1000 );
>
> (without the quotes around "slideSwitch")
>
> On Jun 18, 6:07 am, Steve Tran wrote:
> > Hello eve
Try:
playSlideshow = setInterval( slideSwitch, 1000 );
(without the quotes around "slideSwitch")
On Jun 18, 6:07 am, Steve Tran wrote:
> Hello everybody,
> First time in this list. I've developed a plugin for a simple slide
> show. and here is the codehttp://pastie.org/516507
> The problem is
jQuery is listed on the website as compatible with IE6+, so that's
probably it.
On Jun 18, 7:32 am, Rodrigo wrote:
> Hi everyone!
>
> I've been doing some research and I've found different opinions about
> the compatibility of jQuery with IE5.5.
>
> My problem is that I can't get anything to wor
hi,
try to use escape function for your url.
thanks
prashant
On Jun 18, 12:27 pm, jacktanner wrote:
> When I hardcode q_url, I use a relative path. I tried
> window.location.href (absolute path) and window.location.pathname
> (relative path), and both of those give a parseerror. By the way, th
I am having problem with accessing content of ajax response for
requested url from JQModal plugin that we are using for popUp dialog
boxes in our application.
here is what I need to do.
var url= 'index.cfm?event=work.RejectTask&personId='+ patientId +
'&fDocumentId=' + DocumentId;
$('#summaryPo
When I hardcode q_url, I use a relative path. I tried
window.location.href (absolute path) and window.location.pathname
(relative path), and both of those give a parseerror. By the way, this
is jquery 1.3.2.
Thank you for explaning cache:false!
On Jun 18, 2:04 pm, James wrote:
> When you hardco
Hi everyone!
I've been doing some research and I've found different opinions about
the compatibility of jQuery with IE5.5.
My problem is that I can't get anything to work (I'm doing my testing
in TredoSoft's Multiple IE).
I don't know if this is because there software is not working as a
"real"
I'm doing a logo display for my company site and I want the caption to
fade in each time you hover over the logo and to fade out when you
hover away. I've got that part squared away, but I wanted to know how
to edit my code so that i can reuse my classes for each logo on the
page. Right now if i h
Hello everybody,
First time in this list. I've developed a plugin for a simple slide
show. and here is the code
http://pastie.org/516507
The problem is when I mouse over the pic, the console error logs:
"slideSwitch is not defined"
The same error would still happen if I define
function slideSwitc
Hi All,
Ok, nutty dilemma with a time picker and calendar dates. First, some
back story!
I've got a week view of a calendar (Sun -Sat) showing events and times
that opens into a lightbox-type window. This calendar is just a table
created by a loop that runs for each day of the week. It is basica
I'm doing a logo display for my company site and I want the caption to
fade in each time you hover over the logo and to fade out when you
hover away. I've got that part squared away, but I wanted to know how
to edit my code so that i can reuse my classes for each logo on the
page. Right now if i h
I'm doing a logo display for my company site and I want the caption to
fade in each time you hover over the logo and to fade out when you
hover away. I've got that part squared away, but I wanted to know how
to edit my code so that i can reuse my classes for each logo on the
page. Right now if i h
Brilliant! That fixed it. Thank you so much.
Best,
Heather
On Jun 18, 11:31 am, Nick Fitzsimons wrote:
> 2009/6/18 Heather :
>
> In>http://heather101.com/jcarousel/scentsy/scentsy.js
>
> you have a trailing comma after the final element in the
> "mycarousel_itemList" array. Most browsers will
i have 5 multiple select boxes each of which get populated when the
previous box is clicked on. ex. i select a value from box 1 that
populates box 2 then i select box 2 that populates box 3 etc.
is it possible to have them all populate with out the clicking.
ex. i click in box 1 and box 2, gets p
On Jun 18, 2009, at 10:40 AM, ak732 wrote:
Is good news that there will be a conference. Looking forward to it.
Having the schedule information would be helpful for those of us also
attending Ajaxian conference (assuming the two conferences will be
adjacent again) from the standpoint of making
Cleveland or Detroit could really use a jQuery conference... just
sayin :)
On Jun 18, 11:42 am, Rey Bango wrote:
> Oh it's coming and it's going to be awesome. :)
>
> Rey...
>
> ak732 wrote:
> > Is good news that there will be a conference. Looking forward to it.
> > Having the schedule informa
When you hardcode q_url, do you also put in the absolute path? (e.g.
http://www.balh.com/myscript.php) or only the relative path? (e.g.
myscript.php)
The _=1234567889 part is a result of using 'cache:false'. This gives
the URL a unique value every time so that a server request is always
done.
On
Well I was hoping to stay on the same page and have jquery sorting.
But I love that CFC at riaforge. That's awesome. I may just use that.
On Jun 18, 10:34 am, Charlie Griefer
wrote:
> ... orhttp://paginationcfc.riaforge.org/
>
> On Thu, Jun 18, 2009 at 10:31 AM, Michael Ennis wrote:
>
>
>
> > Hi
... or http://paginationcfc.riaforge.org/
On Thu, Jun 18, 2009 at 10:31 AM, Michael Ennis wrote:
> Hi there!
>
> Is there any reason you don't want to just use CF to handle all the
> pagination? Here's a good example...
>
> http://tutorial405.easycfm.com/
>
> Mike
>
>
> On Thu, Jun 18, 2009 at 10
Hi there!
Is there any reason you don't want to just use CF to handle all the
pagination? Here's a good example...
http://tutorial405.easycfm.com/
Mike
On Thu, Jun 18, 2009 at 10:18 AM, Erich93063 wrote:
>
> OK so I've been searching for a week now for an example of pagination
> of data using
2009/6/18 Heather :
In
> http://heather101.com/jcarousel/scentsy/scentsy.js
you have a trailing comma after the final element in the
"mycarousel_itemList" array. Most browsers will ignore that, but it
causes IE to add an extra "undefined" element at the end of the array,
increasing the array's le
OK so I've been searching for a week now for an example of pagination
of data using jquery, ColdFusion and SQL server. I'm finding tons of
examples using PHP and MySQL. Have any of you successfully got
pagination working with Fusion and SQL Server? I am trying to run a
report that could end up hav
Is there any other information that would help get to the bottom of
this?
Thanks
On Jun 17, 5:26 pm, Heather wrote:
> Site -http://www.scentsy.com/heather101
> Location of js and css
> -http://heather101.com/jcarousel/skins/tango/skin.csshttp://heather101.com/jcarousel/scentsy/scentsy.jshttp:/
On Jun 18, 2009, at 10:54 AM, liam wrote:
So I have a set of elements that are ajax'd in and out
depending on what is selected using the event "change". I know
that .live("change") is not fully supported, but I was wondering if
anyone had come up with a real creative way around this.
.liveq
I had something kind of similar... are you sure your web server is sending
that content as Text/XML?
http://www.perturb.org/display/entry/924/
On Thu, Jun 18, 2009 at 5:09 AM, tom.nov...@googlemail.com <
tom.nov...@googlemail.com> wrote:
>
> Hi,
>
> I have the following XML structure:
>
>
> a
Oh it's coming and it's going to be awesome. :)
Rey...
ak732 wrote:
Is good news that there will be a conference. Looking forward to it.
Having the schedule information would be helpful for those of us also
attending Ajaxian conference (assuming the two conferences will be
adjacent again) fro
Here are some screenshots:
http://hallowdmachine.com/images/datepicker_closed.jpg
http://hallowdmachine.com/images/datepicker_open.jpg
On Jun 18, 10:31 am, michael wrote:
> (Cross-posted from the jQuery UI group, as my post is not showing up
> over there. Hope it shows here.)
>
> Hello all,
>
>
var cache = []
cache.one = "..."
cache.two = "..."
cache.three = "..."
cache.four = "..."
On Thu, Jun 18, 2009 at 8:12 AM, WD.acgrs wrote:
>
> the code:
>
> var choiceShownArray = new Array();
> var cache1 = $("span[class^='matrix_choice_']");
> var cache2 = $("input[id^='showChoice']");
> var
The only alternative i have made so far is to put a standard click event in
the success : function() of an ajax request.
On Thu, Jun 18, 2009 at 4:54 PM, liam wrote:
>
> So I have a set of elements that are ajax'd in and out
> depending on what is selected using the event "change". I know
> tha
> $('#submit').parent("form")
>
> only works when the submit is direct in the form element.
> But when I surround the submit element with an div it does not work.
> How can I find the form element?
$('#submit').closest("form");
Hi all,
I have built the following switcher using jQuery:
http://pmck.net/jq-switcher/
It all works fine except for one small problem. If you click quickly
on a few tabs, sometimes more than one of the tabs will show. The code
for handling the click event is as follows:
$('#tab-list li a').cli
Hello,
i need to find a parent form of an submit button with jquery.
The method
$('#submit').parent("form")
only works when the submit is direct in the form element.
But when I surround the submit element with an div it does not work.
Sample:
This work:
This work not:
How can
Does anyone have a solution. I have the same problem and I use jquery
1.3.2 and ui 1.7. I've tried both the minified and the none minified
versions.
With ui accordion version 1.6rc2 i have no problem. But I then the
collapsible wont work.
On Apr 26, 8:06 pm, sabrinax wrote:
> I did, yes. You c
Hello,
i need to find a parent form of an submit button with jquery.
The method
$('#submit').parent("form")
only works when the submit is direct in the form element.
But when I surround the submit element with an div it does not work.
Sample:
This work:
This work not:
How can I
Hi.
Hopefully this request is not off topic.
I`m to make a working css solution to use nav-bar style jQuery
Superfish menu for WordPress. If someone wants to collaborate on this
please mail me. If someone know any tutorials, working solutions or
examples I`d be happy to be informed.
John Myrsta
Hi,
I have the following XML structure:
any name
I do an ajax call on this and try to select the value in like
this:
...
success: function(data) {
$(data).find("getusername").each(function() {
var user = $(this).find(".login").text();
if(user.length
im experiencing the exact same problem - all my images start on top
of eachother. If you press cmd+shift+R to reload it doesnt fix it - if
you press F5 somehow it fixes it.
overflow on my containing div doesn't work either -
im very new to jQuery and CSS... so it might be something stupid, but
i
im experiencing the exact sa
On Jun 15, 4:29 pm, Mike Alsup wrote:
> Try adding the style "overflow:hidden" to your slideshow container.
>
> On Jun 14, 9:02 pm, vintom wrote:
>
> > I am not great with jquery (yet), but I have used a few plugins with
> > me newest site. I am using the cycle plug
So I have a set of elements that are ajax'd in and out
depending on what is selected using the event "change". I know
that .live("change") is not fully supported, but I was wondering if
anyone had come up with a real creative way around this.
If you're testing whether an element's display is either 'none' or
'block|inline|static|etc.' (i.e. not 'none') you can also do this:
$('#subnav-1').is(':visible')
or alternately
$('#subnav-1').is(':hidden')
Either of these returns a boolean.
On Jun 17, 11:20 pm, Jake Barnes wrote:
> So can
Is good news that there will be a conference. Looking forward to it.
Having the schedule information would be helpful for those of us also
attending Ajaxian conference (assuming the two conferences will be
adjacent again) from the standpoint of making reservations. But I
understand it's not easy
(Cross-posted from the jQuery UI group, as my post is not showing up
over there. Hope it shows here.)
Hello all,
When viewing the page in 1024x768 resolution, the jquery UI datepicker
is covering the text input to which it is attached. This input is
near the bottom of the page when viewing at t
The :input selector in ':input,:radio,:checkbox' selects all inputs,
selects, textarea's and buttons, the last two selectors are redundant.
The selector in my last example only selects text inputs, radios and
checkboxes, so it will exclude the submit. Swap it for Gustavo's:
$('form').find(':text,
I'm looking at using the treeview plugin by Jorn. What I'm wondering
is how to get folders added at a particular spot and how to manage
folders by dragging them around (or in some other fashion). Perhaps
there are some plugins to the plugin, so to speak. Or maybe there is
another one better sui
Can I assume the plugins group is dead? If so, why does the JQuery
site still point people to it? Tried to post there even though the
last post was from February, but it never appeared (going on 48 hours
now). My plugin question follows in another thread.
may be i did not test it with the most current version :-(
so forget about part 1.)
thanks
stefan
On 18 Jun., 15:02, Jörn Zaefferer
wrote:
> The default for width is "auto", that is, the input width. Did you try that?
>
> Jörn
>
>
>
> On Thu, Jun 18, 2009 at 12:37 PM, hobbesDev wrote:
>
> > Hi
The default for width is "auto", that is, the input width. Did you try that?
Jörn
On Thu, Jun 18, 2009 at 12:37 PM, hobbesDev wrote:
>
> Hi,
>
> as there is currently a discussion about autocomplete plugin going on
> i would like to ask if:
>
>
> 1.) is it possible to extend the option:width par
Is there some plugin that makes div content editable without using
contenteditable or designmode attribute ?
Any ideas how to make caret to clickingpoint on div ?
Please take a look at:
http://groups.google.com/group/jquery-en/browse_frm/thread/09ce001e76f38f30#
On Jun 18, 11:53 am, bharani kumar
wrote:
> Hi send the complete jquery code , for that autocomplete
>
Hey there,
I was wondering if any of you guys could help me out. I'm using the
Slider for Jquery UI and am having some difficulty setting a custom
style for more than one handle.
$(function() {
$("#slider").slider({ values: [2, 15] }).addClass("handle");
});
the css
.handle .
Hi,
as there is currently a discussion about autocomplete plugin going on
i would like to ask if:
1.) is it possible to extend the option:width parameter to
width: (number | auto)
where auto would set the width of the select box to the width of the
input element
2.) extraParams should give
Thanks, this is exactly what I was looking for.
On Jun 17, 7:30 pm, Ricardo wrote:
> If a page is small enough, I usually will hide them in javascript, on $
> (document).ready():
>
> myEl = $('#myEl').hide();
> myEl.each(...);
>
> A good alternative is to add a class to the body/html when javasc
Hi all.
Can we use jquery in pages that use iframes? I am having problem with
jquery highlighter and iframe. The highlighter works with other texts
in a page. But texts in the iframe are not highlighted. Suggestions,
guidelines or links to tips, tricks and tutorials, please.
Thank you.
Hi,
Let me describe the problem I have to solve :
When a field is unvalid : its label gets the errorClass class.
Allright !
When the field gets valid : the label, instead of only "loosing" the
"error" class, completely disappears (style="display: none;").
How can I keep my labels displayed whe
Nobody?
Not sure if this meets your needs or not:
https://www.open2space.com/projects/fixedtable
It's a little dated, but does work in some (not all) cases...
Shawn
michael wrote:
Hello all,
Is there a plugin somewhere that will allow a table to horizontally
scroll within a set width? I could swe
Hi send the complete jquery code , for that autocomplete
Thanks
On Thu, Jun 18, 2009 at 1:57 PM, Rune wrote:
>
> Jörn thank you. You are right. I did fumble around since I find the
> caching mechanism a bit difficult to control. In this case I thought
> that the autocomplete would filter out wh
I have an issue with caching in the autocomplete script. The example
is the word:
"arbejdspladsvurdering"
This word fully typed returns a list with 5 values, but if I begin
with typing only:
"arbejds"
and let the autocomplete fetch a number of values and after this
finish the word I get only 2
Jörn thank you. You are right. I did fumble around since I find the
caching mechanism a bit difficult to control. In this case I thought
that the autocomplete would filter out what was returned from the
server script regardsless of what was returned. So if the server
returned "fish" and "cold" on
Hi,
I have resolved the problem..
I did use the clone( true ) at first when I create a default template of
what I want to clone
then I clone() the template to be used by the user... and believe it or not
I actually forgot
to set the last clone to clone( true )
so this was my bad,
sorry
Peter
On W
I have set a website up using the jquery sifr plugin. In all new
browsers(IE7,8, FF3, Opera and Safari 3,4) is works fine!
Even in IE6 - where the plugin doesn't work, it's simple not
recognized and the normal text is shown.
Only in FF2, no text at all is shown.
Here is my code:
headline
$('h2'
Hi,
just wanted to mention, that jQuery.extend.isXMLDoc (jQuery 1.3.2 line
#640) is essentially identical with Sizzle's isXML (jQuery 1.3.2 line
#2338). Perhaps they should be joined in a way, that is, jQuery should
use Sizzle's?
Cheers,
Manuel
95 matches
Mail list logo