Mr KiTT3N
-
jQuery syntax check
$(document).ready(function(){ $(\"#header li a\").hover( function(){ $(\"#archive-search-box\").css(\"visibility\",\"hidden\"); }, function(){ $(\"#arc…
-
Jquery save backgroundColor of current Element in a variable
found this via a quick google http://www.javascripter.net/faq/rgbtohex.htm function RGBtoHex(R,G,B) {return toHex(R)+toHex(G)+toHex(B)} function toHex(N) { if (N==null) return \"00\"; N=parseInt(N); if (N==0 || isNaN(N)) return \"…
-
How come return false prevent redirection of link ?Urgent
I'd recommend you look at a framework like jquery or mootools.... The reason you are having so many problems is cause the dom is a mess... rather than writing code for each broswer you can write it once and the framework will take care of the …
-
How come return false prevent redirection of link ?Urgent
You cant have a link do both.... Either an Anchor link "
-
e.targ equivalent
Change About Us Portfolio Clients Blog Support Forums Gallery Contact Us to About Us Portfolio Clients Blog Support Forums Gallery Contact …
-
Please help me ! Moving Box jquery plugin
"sarabon008" said:i couldn't help you cause i don't know too. is you solved plz infor me. The solution is to add the following... anywhere.... setInterval(\"$('.right').click()\", 2000); Every 2 seconds j…
-
Please help me ! Moving Box jquery plugin
setInterval(\"$('.right').click()\", 2000);
-
Event delegation and "sliding door" links?
The event handler inspects ids to figure out what was clicked on. This means that if you click on an EM element within the link, the event handler will never know that one of the sliding door links was clicked. Ok i just focused on the quote above.…
-
Analyzing a web page with javascript
check out the jquery plugin "dump" http://plugins.jquery.com/project/Dump to detect if jquery is being used open up firebug and try running a jquery code ie ( console.log( jQuery('*') ) ) or something like that... if no error y…
-
jQuery Fading Menu Question
Providing code snipplets or better yet a link to where this error is at helps out tremendously A link to a tutorial doesnt ....
-
Really nice ecommerce javascript
if you are not doing any validation threw a server side script then this means i can modify and change anything i want that gets sent to paypal or google checkout.... its completely in the open Most ECommerce Sites Server > Client > Server &…
-
Form Action HELP!
action just refers to "what page will i load when you hit submit" It is sometimes it self, some times it targets a another script action="" will post your form to it's self and at the top of your page you would write somet…
-
Flash and jQuery
if your making a 100% flash site why wouldnt you just have the lightbox functionality inside the flash element? As far as making calls from flash to javascript it can be done... you have to set up a trigger inside of flash and then in the embed cod…
-
Really nice ecommerce javascript
Its not very secure.... I can go into firebug and give myself a discount.... simpleCart.taxRate = 0.07; Tax rate varies as well.... out of state ect.... how do you detect/change that per customer? there is many ways to exploit.....
-
Twitter JS Validation
$(document).ready(function(){ $.getJSON('http://www.twitter.com/status/user_timeline/cbullmedia.json?count=10&callback=?', function(data){ var tweets = ''; console.log(data); $.each(data, function…
-
jQuery UI Tabs with Next/Previous
The convention that these type of "frameworks" or rather widgets adopt is to be very spefic soo there is a very low chance that it conflicts with your personal css.... In jQuery UI case: example ".ui-tabs-selected" [list] [*]&q…
-
Any toolkit that can get me started like this site?
http://docs.jquery.com/Tutorials Try starting here....
-
Image rotation
just fyi, that wont work in IE and alotta older browsers Its using the canvas element to do that... id start looking for php scripts that create the rotated image server side
-
radio button image replacement
//change the radio button status and the replacement image function statusChange(i) { if(inputs[i].checked) { inputs[i].checked = ''; document.getElementById('checkImage'+i).src=imgFalse; } else { …
-
Please critique my technique
Few things to note, avoid using inline styling For questions of any kind, please call us Monday - Friday 8am to 5pm. Otherwise email us and we will contact you in 2 shakes of a lambs tail. 520-205-2306 For questions of any kind, please call us …
-
Help with scirpt for sliding hover effect
you could write it.... You would need png image for each link with the letters transparent and the outside the same color as the background.... then animate a div behind the transparent font
-
Any toolkit that can get me started like this site?
The only the site is really doing javascript wise is ajax.... Jquery would work great, the script is dumping json data and javascript is taking that info and appending or replacing table elements (td) inside 1 row.... $('div#nav a').cli…
-
jQuery Append and then remove
Few things to note, var title = $(this).attr("title"); This will return And this is fine but you shouldn't be appending the title without wrapping.... Also if("input:checked") is just a string "input:checked&quo…
-
.htaccess custom url with php
I recommend anyone that wants to achieve clean urls and is starting a site from scratch should look at using a MVC/MTV framework CodeIgniter, cakePHP, Zend Framework ect... Keep in-mind the way they handle the rewrite rule breaks the way most peo…
-
jQuery Dropdown question...
You cannot fade out a selector Instead of doing .removeClass('#id') you need to do .stop().animate({'backgroundColor' : '#888888'}, 2000) hope that helps
-
Navigation or slider effect like www.melissahie.com
"azzcat" said: Hi. And thanks for the suggestion! I tried it but couldn't get it to work. :( So I went back again to try the Fx.Scroll. Still no luck. Gonna start reading the moo tools series (30 tutorials) from beginning. Can this …
-
Rewritten: jQuery / How do I use an array
Your probably right
-
Navigation or slider effect like www.melissahie.com
first set body css to {overflow: hidden;} /// This hides the scroll bars Next, wrap everything in a div (ie div#wrapper) this is what you going to move all you have to do know is animate the wrapper $(function(){ $wrapper = $(…
-
Jquery Similar to Fluid Galleries
It would be exactly the same, the only difference is on css-tricks moving boxes demo the photos are hidden in the box.... If you where to firebug and change overflow:hidden; to overflow:visible; it would look like this: http://i43.tinypic.com/2u5g…