Steven, I am doing the same way as you said using eval and storing the
string in JS variable.
I may be wrong but as per my understanding $.getJSON also does eval()
internally.
Just wanted to do pure implementation only through $.getJSON without
using eval() custom JS method.
Thanks
Mohammed Ari
It was all my mistake, sorry. I had 2 clones of the same function and
was editing a wrong one. everything works perfectly, all alerts etc
Sorry, guys
On Mar 18, 2:16 pm, Andy789 wrote:
> OK, finally, I got it: everything was caused by qtip: adding a code
>
> $j(this).qtip({
>
> content: $
Sorry if i am mistaken in anywaybut $.getJSON is suppose to be for getting
JSON data from remote server or simply server, but not for you to eval a
String into javascript object. And from the source of jQuery I believe it
will simply to eval('('+json+')') anyway.
And if you want to do it that way,
Hi,
I amn't able to parse hidden form field data in $.getJSON method,
seems like I am missing something.
Hidde Field:
This is my hidden filed with JSON value which I access in jQuery code,
I ma just storing in a variable videoListJson and getting in the
string format.
Pass the videoListJson i
Hi James,
Thanks for looking into my query.
the JSON variable which i return back is "succes" thats y it is
"succes" instead of "success".
can u give me any other solution for this.
Regards
Nizam
On Mar 18, 6:18 am, James wrote:
> I didn't look through it deeply, but is:
> if (data.succes){
>
OK, finally, I got it: everything was caused by qtip: adding a code
$j(this).qtip({
content: $j(this).attr('title'),
show: { effect: 'grow', length: 400 },
hide: { effect: 'grow', length: 400 },
position: {
corner: {
target: 'topMiddle',
tooltip: 'bot
the error says "no name assigned"
and you have
which alas, have no "name" parameter assigned to either control
On Mar 17, 9:54 pm, RonnBlack wrote:
> The page below always gives me the message "[object HTMLInputElement]
> has no name assigned" (twice).
>
> What doesn't it like?
>
>
> "htt
On Tue, Mar 17, 2009 at 9:54 PM, MonkeyBall2010
wrote:
> I think I solved my own problem. The callback function does need to be
> within the ajaxSubmit function but I wasn't doing it correctly. This
> works as intended:
>
> submitHandler: function(form) {
> j
> This seems like a pretty easy problem. Does anybody know how I can add anchor
> tags around the Cycle Plugin Slideshow?
The key is to give the anchors a display:block style.
http://www.malsup.com/jquery/cycle/anchor.html
Try changing the ID in:
to something other than 'submit'. Internet Explorer doesn't like it.
On Mar 17, 3:54 pm, RonnBlack wrote:
> The page below always gives me the message "[object HTMLInputElement]
> has no name assigned" (twice).
>
> What doesn't it like?
>
>
> "http://www.w3.org/TR/xhtml
Yeap same here
Yu Woon wrote:
> Hi,
>
> I've been using this plugin:
> http://dev.jquery.com/browser/trunk/plugins/backgroundPosition/jquery.backgroundPosition.js?rev=6073
>
> Using it together with jQuery 1.2.6 and works nicely. I can animate
> the backgroundPosition of my backgroundImages.
>
>
The page below always gives me the message "[object HTMLInputElement]
has no name assigned" (twice).
What doesn't it like?
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml";>
http://code.jquery.com/jquery-latest.js";>
http://dev.jquery.com/view/tru
One thing i never understand about posts like this:
Who in the world is going to be looking at 10,000 (or more!) rows of
data at once?Are they on an OC3 connection to download the 20 meg
HTML file?
Surely there has to be a better and waaay more efficient way to show
the users the data they w
I think I solved my own problem. The callback function does need to be
within the ajaxSubmit function but I wasn't doing it correctly. This
works as intended:
submitHandler: function(form) {
jQuery(form).ajaxSubmit(function() {
$.bloc
Kevin,
On Mon, 16 Mar 2009, kmoll092 wrote:
I am looking at jcarousel and i am a little confused on how to
integrate and can't seem to find great documentation, is there a site
with example code on how to integrate it into my site. If anyone else
has a suggestion on the best way to acheive m
This is what I have so far:
$("#submitForm").validate({
rules: {
address: {
required: true,
email: true,
remote: "script/validateEmail.php"
This seems like a pretty easy problem. Does anybody know how I can add anchor
tags around the Cycle Plugin Slideshow?
--
View this message in context:
http://www.nabble.com/Can%27t-get-anchor-tags-to-work-with-Cycle-Plugin-tp22475620s27240p22571406.html
Sent from the jQuery General Discussion
You don't need the callback, but you can call it with:
google.setOnLoadCallback(init);
The domready wrapper is still a good idea though, depending upon where
your scripts are--at the close of the body we hope :)
On Mar 17, 2:52 pm, Milan Andric wrote:
> Hello, I was just adding a dropdown men
I didn't look through it deeply, but is:
if (data.succes){
suppose to be:
if (data.success){
On Mar 17, 2:45 am, nizzi wrote:
> Hi,
>
> Im using autocomplete plugin + form plugin + validate plugin.
>
> The Code i use is
>
> $(function() {
> $("#movie").autocomplete("getmovie.php
It is also highly recommended that you load your CSS files before your
Javascript files.
On Mar 17, 1:14 pm, Mike Alsup wrote:
> > I have created a demo page according to the demos available
> > onhttp://malsup.com/jquery/block/#demos. The demo i have created is
> > working fine in Firefox but
As an aside, you can use a different syntax for .find() which last I
knew was a bit faster and less characters:
$(this).find('.someclass')
is equivilent to:
$('.someclass', $(this))
On Mar 17, 8:58 pm, "so.phis.ti.kat" wrote:
> Thanks for the tip. I started to use FF's console to see more det
Thanks for the tip. I started to use FF's console to see more details
of the object(s)
Here's my code:
$(document).ready(function (){
$("li.page").click(function (event) {
var secondList = "ul.categories";
if ($(this).find(secondList).length > 0) {
Try the jQuery BlockUI plug-in:
http://www.malsup.com/jquery/block/
You can block a whole page with a screen and a message while your
script does its job.
On Mar 17, 2:56 pm, Eric Garside wrote:
> You could use css to "display:hide" the form users could submit from.
> Do you have a live example
You could use css to "display:hide" the form users could submit from.
Do you have a live example? It would help a bunch.
On Mar 17, 8:54 pm, Adwin Wijaya wrote:
> I have page that rely heavily on jquery for doing calculation.
>
> I need to prevent user to enter before the page finished loading
Also, as an aside, I'm not sure the browser handles Javascript last,
just asynchronously. If you have:
I'm pretty sure it will fetch your css first, then wait on the JS,
then load the next CSS file.
On Mar 17, 8:40 pm, MonkeyBall2010 wrote:
> OK, this did the trick, thanks!
>
> On Mar 16,
I have page that rely heavily on jquery for doing calculation.
I need to prevent user to enter before the page finished loading so
the javascript can be run.
is there simple solutions to do that ? like displaying [loading]
may be ?
thanks
The problem here appears to be the change jQuery made with 1.3.2 with
how it determines visibility.
http://jsbin.com/omavi/edit
That link is a quick demonstration of how it works. A "visible" object
to jquery is determined by if it takes up space in the page, and has
nothing to do with the css p
Alerts work inside .each() just fine. There has to be another error in
your code.
I just copy and pasted that snippet into a new page and marked a a few
LIs as jqtip and it worked perfectly. Are you positive there is
nothing else inside the each() besides the alert?
On Mar 17, 5:36 pm, Andy789
For jQuery.noConflict(), according to:
http://docs.jquery.com/Core/jQuery.noConflict
NOTE: This function must be called after including the jQuery
javascript file, but before including any other conflicting library,
and also before actually that other conflicting library gets used, in
case jQuery
I don't see any issue with the code at all and can't help any further.
I suggest stripping out other code (not disclosed here) and seeing
what happens. If that's still no good, try posting a demo page that
displays the issue.
By the way, which web browser(s) are you using for this? Have your
trie
OK, this did the trick, thanks!
On Mar 16, 7:15 pm, Karl Swedberg wrote:
> This is the best way I've found to initially hide content with
> JavaScript without having the flash of unstyled content.
>
> http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-...
>
> --Karl
>
> _
Do you have a link to an accessible site? It would help substantially
in debugging the issue.
On Mar 17, 2:50 pm, mcologne wrote:
> the path is correct... it works with firefox 3... and:
>
> if i remove the prototype.js, it works with firefox 2 too...
>
> On 17 Mrz., 19:07, MorningZ wrote:
>
>
No, just to make it real simple:
function test(){
var vis = $j('li.jqtip:visible').length;
alert(vis); //correct alert OK, returns some number here!
$j('li.jqtip:visible').each(function()
{ alert('something here'); //nothing happens !!!
})
}
All alerts inside .each(function..
Hi, I have this:
I want to return, let's say, the entire set where the
RecurranceInterval equals "12", like this:
I've tried the filter method, but I can't get it to work. Any help
Yes, it works! Thanks!
Is that Jquery issue or Firefox has special implementation for AJAX?
On Mar 17, 3:39 pm, Brad wrote:
> Try the $.ajax cache: false option.
>
> On Mar 17, 5:29 pm, cindy wrote:
>
> > There is a device with web server running. My code will check
> > periodically the statu
I was wondering if anyone could point me to a tutorial or blog where i
can accomplish this task.
Basically i have a YUI datatable and i want to use jQuery to hide all
but a user generated number of rows that are random selected
so if i had 50 records in the table and the user input 10 in a text
Try the $.ajax cache: false option.
On Mar 17, 5:29 pm, cindy wrote:
> There is a device with web server running. My code will check
> periodically the status of the device.When I pull the network cable
> from my laptop. I found that firefox can still response the request
> sometimes. It seems
Thank you, I wasn't sure whether or not to use $.load or $.ajax...
load seemed easier, but I guess I discovered it was inconsistent.
I modified my code to work with $.ajax
On Mar 17, 3:01 pm, James wrote:
> Don't use $.load. Use $.ajax (or $.get or $.post).
>
> $("#userlogin", "#container").eve
There is a device with web server running. My code will check
periodically the status of the device.When I pull the network cable
from my laptop. I found that firefox can still response the request
sometimes. It seems firefox has cache some response. IE works fine.
Does some one have same experien
By "Toggle the sort" I'm assuming you want to change a visual sort
order indicator in the clicked ?
As MorningZ suggested your click will fire an ajax .load. The .load's
callback will:
* populate the tables tbody with the return result set
* manipulate the clicked th css to indicate a sort order
Hi there,
I'm working on a header that display a slideshow and at the same time
use the fadeTo() effect; the behavior of this header is as follow:
1) Once the page is load display slideshow 50% transparency and hide
navigation
2) When user hover header fade slideshow and navigation to 100%
3) Th
> I have created a demo page according to the demos available
> onhttp://malsup.com/jquery/block/#demos. The demo i have created is
> working fine in Firefox but is it not running in Internet Explorer 6.
> Can you please suggest, what should I do to run the demo in Internet
> Explorer.
Can you p
> I am a novice with web page building and JQuery and am in need of some
> help. I have managed to get the Jquery rounded corners working in my
> web page by adding the code for the div and putting the Jquery bits
> in my directory. However I have taken the code from the demo page and
> I am havi
> pagerAnchorBuilder: function(idx, slide) {
> return ' # ' + slide.src + ' '; }
> })
> ;
>
> particularly the part where it calls back in the "slide.src" . I want to
> have it call back a different part of the slide area. A
I have installed this great menu on a shopping cart development that I
am doing but I have a problem with Internet explorer, the text moves
to the right, I have uploaded two picture samples
The site can be analyzed online here:
http://www.vitwebdevelopments.com/onlineshoppingcyprus/products.php?
On Mar 18, 2:43 am, "D.Kreft" wrote:
> On Mar 17, 4:53 am, RobG wrote:
>
> > It is much more user friendly to let the user complete the form and
> > submit it. Run validation onsubmit (or onblur of individual fields if
> > you like) and cancel submit if they don't get it right.
>
> > Do not l
Are you using jquery.noConflict() in your app?
What do you get on console.log( jQuery.fn.corners )?
On Mar 17, 1:17 pm, boy_named_Goo wrote:
> I'm trying to use the rounded corners plugin -- jquery.corners.js .
>
> When I create a small test case, below, it works fine. However, when
> I try to
We can help, but without showing us any code it's difficult to do so.
On Mar 17, 9:29 am, Thiago wrote:
> I add, edit, read and delete records via ajax.
> Is working correctly.
> Only it is not optimized, every time I do some action script reads all
> my records again.
> I wish only the record t
> I'm trying to use the rounded corners plugin -- jquery.corners.js .
>
> When I create a small test case, below, it works fine. However, when
> I try to add corners to my production system I receive the following
> error in Firefox's error console:
>
> $('.edlBoxArea').corners is not a function
I'm having a problem with this code:
function fade() {$('.pic').fadeIn(7000);}
$('#shuffle')
.before('')
.cycle({
before: fade,
fx: 'shuffle',
timeout: 1,
shuffle:
Hi there
please excuse my non-perfect english, i'm german speaking ;)
i am new to jQuery (and to this group) and have a problem:
i created a small website with a main- and a submenu. these are text-
links.
when i click on a main-menu-item, there are the following actions
executed:
- empty main
I add, edit, read and delete records via ajax.
Is working correctly.
Only it is not optimized, every time I do some action script reads all
my records again.
I wish only the record that action has to be recharged.
Can you help?
I add, edit, read and delete records via ajax.
Is working correctly.
Only it is not optimized, every time I do some action script reads all
my records again.
I wish only the record that action has to be recharged.
Can you help?
I use superfish for a site I'm developing. The drop shadows have a
nasty white display artifact and seem to leave other visual artifacts
on the page. I've seen chatter that this may relate to how Chrome
treats opacity. Whatever the case, it's not pretty.
Cheers
If you are referring to Firefox there is this bug that I submitted
years ago that hasn't been looked at yet
https://bugzilla.mozilla.org/show_bug.cgi?id=262354
On Mar 17, 7:48 am, Sridhar Kuppalli
wrote:
> Hi All,
>
> - I have jquery tabs, where I have a flash movie under tab1.
> - User wi
Actually, if it's input elements within a step:
$('#the-step-parent-element :input');
-Trey
On Mar 18, 8:56 am, tres wrote:
> Actually, to select all the elements in a specific form, all you need
> is:
>
> $('#your-form :input');
>
> -Trey
>
> On Mar 17, 12:43 pm, Led wrote:
>
> > See it he
Actually, to select all the elements in a specific form, all you need
is:
$('#your-form :input');
-Trey
On Mar 17, 12:43 pm, Led wrote:
> See it here
>
> http://d61628.tinf28.tuganet.info/132/1.htm
>
> On 17 Mar, 01:30, Stephen Sadowski wrote:
>
> > Hey,
>
> > I'd go with $('#form input,sel
Hello, I was just adding a dropdown menu to my site using droppy.
http://plugins.jquery.com/project/droppy
And I also use google jdev with google.load('jquery',...).
Droppy requires a bit of code to initialize the dropdown:
$(document).ready(function() {
$('#nav').droppy();
Yes,
I tried that before but it did not work this is why I asked.
I placed an example online:
http://www.27lamps.com/Beta/Collapse/Form.html
You can see that each form's fieldset has an ordered list inside.
I want to show/hide the OL instead of adding it to a new div.
Could someone, please, he
I've been working on an iphone version of my site, and though their
are lots of comments re: animation on mobile safari, I actually don't
think it's all that bad (maybe it was previous versions, I'm on v.2).
I have an iphone like UI working fairly well, where the user can
select something and the
hi there i have a problem with the jquery animation
i have a markup like this
text text
so i want to $('#tha_img').hide("slow") on mouseenter of the img and
the text with is on the bottom appears, ok but now i want the jquery
to abourt the animation if the hide of the tha_img isn't finished and
Hi,
Can some1 please explain this in detail to me? I am confused on the
selector part $('').
// add list to ul
var list = $('').attr
('class',_imageLoadClassName).appendTo('ul#'+_imgContainerId);
Thanks!
What happens if you remove the code for the qtip and leave the alert?
On Mar 17, 10:14 am, Andy789 wrote:
> Yes, this is what i was doing, but puzzled as why the second alert
> never triggers:
>
> function tips(){
> alert($j('li.jqtip:visible').length); //returns 9
> $j('li.jqtip:visible').each(
Yes, this is what i was doing, but puzzled as why the second alert
never triggers:
function tips(){
alert($j('li.jqtip:visible').length); //returns 9
$j('li.jqtip:visible').each(function()
{ alert('something here'); //returns nothing, but the function is
working and creates tooltips !!
$j
Ok, i found the mousewheel plugin and it solved my problem.
Nevermind...
Sam
$(this).mousewheel(function(){return false;});
On Mar 17, 2:19 pm, Shredder36 wrote:
> Hello,
>
> I want to prevent our users from accidently changing the value in a
> select element using the mouse wheel. I t
Has anyone used ajaxSetup to log or report AJAX errors? Would you
care to share how you did this?
Yes, everything you reintroduce new content into the DOM, you'll have
to re-bind the events (if you're not using Event Delegation).
Does using the $.live function work for you:
$("imgg").each(function() {
$(this).live('mouseover', imghandlerr);
});
I'm not sure I understood what you were
Also in the options you should add cache: false
On Wed, Mar 18, 2009 at 8:01 AM, James wrote:
>
> Don't use $.load. Use $.ajax (or $.get or $.post).
>
> $("#userlogin", "#container").everyTime(7500,function() {
> $.ajax({
> url: '/ajax/userlogin',
> type: 'POST',
>
Don't use $.load. Use $.ajax (or $.get or $.post).
$("#userlogin", "#container").everyTime(7500,function() {
$.ajax({
url: '/ajax/userlogin',
type: 'POST',
dataType: 'html',
success: function(data) {
if (data) {
$(thi
Hello,
I want to prevent our users from accidently changing the value in a
select element using the mouse wheel. I tried various permutations on
the following theme but have been unable to get anything to work. Any
suggestion would be greatly appreciated. This application is for a
captive audi
Don't use $.load. Use $.ajax (or $.get or $.post).
$("#userlogin", "#container").everyTime(7500,function() {
$.ajax({
url: '/ajax/userlogin',
type: 'POST',
dataType: 'html',
success: function(data) {
if (data) {
$(thi
What would be the best way to Toggle the sort using jQuery?
Know of any samples that can determine if the sort is asc, then have a
toggle update the link to desc?
I appreciate all your help!
Thanks,
Tony
On Mar 17, 2:35 pm, MorningZ wrote:
> Sounds like jQuery's ".load" event would be best fo
the path is correct... it works with firefox 3... and:
if i remove the prototype.js, it works with firefox 2 too...
On 17 Mrz., 19:07, MorningZ wrote:
> That error would *have* to mean that the jQuery library is not
> properly loaded (probably the wrong path/location to the jQuery file)
>
> Use
Hi Guyes,
noone noted that 1.3.2 broke down fading and sliding.
Simple code like this:
$('.showSignIn').click(function(){
$('#passwordPanel').fadeOut(function(){
$('#signinPanel').fadeIn();
});
return false;
Sounds like jQuery's ".load" event would be best for you
make the call to "list.cfm?show=All&column=name&sort=asc", create the
HTML table in your server side code, then put that HTML into a
or the like
On Mar 17, 2:31 pm, Tony K wrote:
> I'd like to not have page reloads on the client side, a
I'd like to not have page reloads on the client side, as well as the
ability to toggle the TH with the sort direction.
Make sense?
On Mar 17, 2:05 pm, MorningZ wrote:
> If you are looking to do the sorting on the server-side, then where/
> how do you think jQuery comes into the equation?
>
> On
I'm guessing you use display:none to hide the tabs. I think that
forces the flash object to refresh.
Try a different technique to hiding your tabs and see if that helps.
On Mar 17, 10:11 am, Sridhar Gowda wrote:
> Hi All,
>
> I have jquery tabs, where I have a flash movie under tab1.
> User wil
That error would *have* to mean that the jQuery library is not
properly loaded (probably the wrong path/location to the jQuery file)
Use Firebug's "Net" panel to confirm that it is properly found/loaded
On Mar 17, 1:05 pm, mcologne wrote:
> hi,
>
> i have problems using jQuery.noConflict() and
If you are looking to do the sorting on the server-side, then where/
how do you think jQuery comes into the equation?
On Mar 17, 1:20 pm, Tony K wrote:
> I am looking to display a table of data and have my table headers we
> links to sort.
>
> I CANNOT use client side sorting, the table is up t
Try this:
var body = fieldset.find('ol:first')
http://docs.jquery.com/Selectors
On Mar 17, 12:13 pm, shapper wrote:
> Hello,
>
> I am trying to find update a plugin to create new functionality.
> On the current version I have the following:
>
> var legend = fieldset.find(':first');
>
I'm trying to use the rounded corners plugin -- jquery.corners.js .
When I create a small test case, below, it works fine. However, when
I try to add corners to my production system I receive the following
error in Firefox's error console:
$('.edlBoxArea').corners is not a function
I'm only ad
I am looking to display a table of data and have my table headers we
links to sort.
I CANNOT use client side sorting, the table is up to 10,000 rows.
I have the table built and headers are links to pass a query param.
My question is what is the best method to pass the params and load the
page w
Yes $("#dmid img", msg).each() is looping correctly.
I have a situation where depending on the user navigation, content
that is cached in the JavaScript object as a string is brought back
to the current document via:
$(selector).html(myObjc[index].page)
where myObjc[index].page is String conta
Hi All,
I have jquery tabs, where I have a flash movie under tab1.
User will play the movie for a while, pause the movie.
Moves from tab1 => tab2 and come back to tab1.
The flash movie will begin from the beginning. why is it so?
Is there any solution for this?
Thanks & Regards
Sridhar K N
Hi,
The prepend function just adds HTML at the beginning. You have to set
the select yourself. Simplest way would be like this:
$('select').prepend('Select ... ');
or something like this:
$('select').prepend('Select ... ');
$('select option:first').attr("selected","selected");
Paul
On Mar 17, 1
hi,
i have problems using jQuery.noConflict() and firefox 2.
my firefox version: pc firefox 2.0.0.20
the same with mac firefox 2.0.0.4
i'm using only the first example from
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
it doesn't work, the following errors occur in firebug:
Securit
On Mar 16, 12:26 pm, Stephen Sadowski wrote:
> How about
> $('#form input,select,radio').change(function() { /* check to see if
> necessary fields are filled out, if so enable submit */}
Hi Stephen, thanks for your suggestion.
The problem with this approach is two-fold:
1) This requires u
On Mar 17, 4:53 am, RobG wrote:
> It is much more user friendly to let the user complete the form and
> submit it. Run validation onsubmit (or onblur of individual fields if
> you like) and cancel submit if they don't get it right.
>
> Do not lock users into getting a field valid before letting
On Mar 16, 7:39 pm, Mac wrote:
> The validate plugin has a success option that enables customization of
> the valid fields on the form
> It takes a string or a function. In the validate plugin documentation
> the example is used to add a class to the label, but since it's a
> function, you could
Hello.
I wrote http://grom.jabbim.pl/furries/test3.html ... My mascot can
move to left and right but I dont know how to write algorithm to move
him to stand on the ground and move him up and down. Can someone check
my code and maybe wind a way ti make it? I know how to move him up and
down but hi
Great Job...
=)
On Mar 16, 8:57 am, Tony wrote:
> I'm glad to anounce the new release of jqGrid wich is fully integrated
> with UI Theming.
> This is not a final release, but I hope to finish it as soon as
> possible.
> The demo can be found herehttp://www.trirand.com/jqgrid35/jqgrid.html
>
> An
Hi all,
I'm trying to write a global AJAX response handler which hooks in
*before* the client code receives requested data. The response data
from the server might be in JSON or HTML format depending on where the
request has come from.
I'm trying to build in some client-side handling in case the
if ($(this).find("ul")) { ...
will always return a jQuery object and so evaluate to true; you need
to check the length:
if ($(this).find("ul").length>0) { ...
On Mar 17, 8:57 am, "so.phis.ti.kat" wrote:
> Hello Everyone,
> I tried doing a search and found some possible solutions but was not
hmm, can any expert suggest a path? Thanks.
On Mar 16, 1:31 pm, Jay W wrote:
> How todraglinkfrom another window and using the javascript in the
> main window to intercept thelinkand add customized handler?
>
> The goal is to have an event handler in the main window, then whenever
> a newlinkfro
hi,
I've looked through at awfaul lot of posts/articles and haven't been
able to get this thing working. The xml and the jquery code is below.
The problem ive been getting is that despite the xml being
successfully load from the ajax call and despite the jquery loop
looping through the xml no act
I almost forgot in my last message, don't forget the return false; if
you don't want your link to lead anywhere ...
Something like this :
$(document).ready(function(e){
$('a.typeswitch').toggle(
function () {
$(".typeselect").attr("select
Hello, maybe I've got this wrong but when I tested the toggle function I
don't think I needed the .click function...
Try this :
$(document).ready(function(e){
$('a.typeswitch').toggle(
function () {
$(".typeselect").attr("selected","TV Sh
Hello Everyone,
I tried doing a search and found some possible solutions but was not
able to get it working for my markup so I am wondering if the
following can be done and how.
Markup
index
menu
...
catering
...
> I just updated Cycle plugin and still have this odd situation
>
> > I am having an issue in FF where I have a DIV that I am animating from
> > off the screen and overlaying part of the page.
>
> > on the page I have thecycleplugin running. If I move the mouse from
> > the overlay to the where th
I'm sorry to point something totally unrelated out to you, but hope it
will help anyways
don't inclue *both* "-vsdoc" and the regular versions in your
code.
Visual studio will automatically look for a "-vsdoc" version of any
javascript file you include as long as it's in the same location,
1 - 100 of 149 matches
Mail list logo