I've been trying to make this script work for an hour with zero luck.
Heres the proper jsfiddle: http://jsfiddle.net/zachleat/WzN6d/
Here's my website where the broke code is:
http://designobvio.us/dov2/index.html
I'm totally novice with javascript/jQuery. Please forgive me if this is a retarded semantics problem.
thank you
Looks like you are missing the document.ready try adding the following.
$(function(){
$('#bigtext').bigtext();
});
jsfiddle does this for you automatically, thats why you don't need it there.
Related
So i copy the codes from this website completely unchanged
-> enter code herehttp://jsfiddle.net/laelitenetwork/puJ6G/
But the button doesn't work for me. When i click the + and -, nothing happen to the number.
This is my code in the netbeans.
Is my netbean problem or something missing in the javascript?
the html, css and javascript
I am not entirely sure on what exactly you are asking but I understood it like that:
You want to use the code from the JSFiddle in your own project and it does not work.
If that is the case, I think you forgot to add a reference to JQuery in your code.
Add this to your HTML:
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
And see if that fixes your problem.
However if it does not fix it, please edit your post with the full code.
I have a simple Ajax function that changes a div.
The following code works, but it loads the index.php in my div also, which I don't want.
xmlhttp.open("GET","index.php?p=productDesc&q="+currentID,true);
Although the above works I'm trying to take the productDesc.php only, and it does not work.
xmlhttp.open("GET","pages/productDesc&q="+currentID,true);
Any ideas what might be causing that?
I searched but according to what I found I don't have anything wrong.
Any help appreciated.
Can someone please help me to understand what Am I doing wrong ?
I am using the isotope jquery plugin , all works ok, except filtering ..
I reproduced the problem here --> http://jsfiddle.net/AxCCT/
this looks pretty straight forward , I am obviously missing the obvious here .
I have followed the instructions here http://isotope.metafizzy.co/docs/filtering.html
Progress!
I changed a lot of stuff and it is sort of working now. It sorts and then immediately snaps back (might be a jsFiddle thing? Try loading this into your page and see what happens)
I'm doing an Isotope project right now at the moment and I'm using:
$(document).ready(function() {
// initialize isotope
});
I tried to use that in the Fiddle but it didn't like it for some reason.
Edit: working solution below, thanks to #jaychapani for pointing out the HTML error.
It been a long time that im searching on how can i create my own Coverflow effect with Javascript or Jquery.
So if any one have an idea or can give a something releated with that, it will be great.
Thnx
Try ContentFlow.
ok so here's my problem...
i've been following this tutorial ( http://www.alistapart.com/articles/dropdowns )
to make a css drop down menu with my wordpress blog. everything works fine... except in IE6.
now i know this is normal, and in the link i posted above there is a fix of this which makes use of DOM based scripting... is this java script?
the main question i have is.. where do i paste this code into? css, html, make a new file?
i'm new to any form of javascript.. it's boggling me a bit..
any help would be great!
Thanks!
yours truly
noobie
Yes, it is JavaScript.
As such, you can place it in a <script> block, preferrably inside <head>. (It assigns itself to window.onload, so the code will be executed at onload, no matter where in the page you put the code)
the main question i have is.. where do i paste this code into? css, html, make a new file?
I suggest you take a look at the source of this sample page:
http://www.htmldog.com/articles/suckerfish/bones/. It shows the bare details of how it's implemented.
i'm new to any form of javascript.. it's boggling me a bit..
I would like to suggest you read this nice tutorial which already helped out numerous developers during the years: w3schools.com/js.
Grz, Kris.