Creating A Class That Draws Triangles For A Project

May 6, 2010

I'm creating a javascript class that draws triangles for a project I'm working on (none of the other vector solutions for triangles were satisfactory so I'm writing my own).

Anyway here is a small snippet of code:

Code:

The idea of the code is to create a small div in the middle of the triangle that a user can click on, pretty basic stuff.

Problem with highlighted code is, on their own they work, together they dont.

IE, if I only set the LEFT of the div, it moves across the screen to required position.

If I only set the TOP of the div, it moves down the screen to the required position.

But BOTH together (as above) just make the div dissapear somewhere. Weird.

View 10 Replies


ADVERTISEMENT

Creating Popup Window For Website Project

Jan 7, 2009

1. the 1st popup should open automatically and open a URL 1
2. then after 30sec the popup should close
3. then 2nd pop up window should appear and open URL2
4. then after 30sec the popup should close and so on

can any body help me with this please. I really need it.Or it can be like this also,The 1st popup should open automatically and open a URL1 then, after 30sec it should open URL2 and after 30 sec open URL3 and so on in the same popup.

View 2 Replies View Related

Get Corresponding Project Name From Project ID In Database?

Jul 12, 2010

I have a drop down box that selects a project name. This is then taken to a javascript function that is supposed to fill in a read-only box with that name, but instead of filling it in with the project name, it fills it in with the project ID, which is how the sql database is set up. Each project has an ID, a name, and other values. Is there a way I can get the project name given the project ID in the javascript function?

View 1 Replies View Related

Creating A Class With Just It's Name?

Jun 27, 2010

rote a bunch of Javascript classes for this framework I'm working on and want to be able to create instances of the class using just it's name string. For example: Given the following class

javascript Code:
Original
- javascript Code

[code]....

View 4 Replies View Related

Creating A New Window Within A Class?

Apr 1, 2009

I have this code that when just enclosed in a <script> works:..dto = new window["imenus_data"+(x2=x2.substring(6))];but when i put this code in a class and access the function:

Menu.prototype.initialize = function ()
{
..

[code]....

View 1 Replies View Related

Creating A XML Document Inside A Class

Jun 23, 2006

Im trying to set up a XML document object within a class declaration(mozilla only):

MyClass.prototype.loadXML = function(file)
{
this.isLoaded = false;
this.xml = document.implementation.createDocument("","",null);
this.xml.onload = this.fileLoaded;
this.xml.load(file);}

MyClass.prototype.fileLoaded()
{
this.isLoaded = true;}

Somehow, the isLoaded property doesnt seem to be set to true when i
create an instance of the class. I tryied passing the object instance
through an argument
...
this.xml.onload = this.fileLoaded(this)
...
MyClass.prototype.fileLoaded(obj){
obj.isLoaded = true;}

but i get even weirder results. Any ideas?

View 1 Replies View Related

Dynamically Creating A Unique Variable Name For Elements With Same Class Name?

Aug 31, 2010

I am probably going about this all wrong, but I'm not sure how to do this.Basically I need to create a unique variable name for each element that has the same class name and set each one to zero.I thought I could just concatenate the index value to a variable name to create unique names. Something like:

$('.toggle-trigger').each(function(){
var toggleTriggerIndex = $('.toggle-trigger').index(this);
var t + toggleTriggerIndex = 0;

[code]....

View 1 Replies View Related

JQuery :: Creating New Custom Rule To Check If Button Has Class

Oct 19, 2009

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">

I'm trying to create a new validation rule to check if a button has a class. I try to explain the scenario. I have a button that makes an ajax call to check the availability of a product. When the app loads the button as class "to_check", when the button is clicked an ajax call is fired, a server script return the availability of the product and basing on this answer I change the class of the button from "to_check" to "ok" or "ko". Now I want to validate the button to se if the availability is being checked and is ok, then I wrote this:

<pre>$.validator.addMethod('hasClass', function(value, element) { if($(element).hasClass(value)) {
return true;
} else {
return false
}},
jQuery.format('Please check the button'));</pre>

Now I want to add this rule to the button with the metadata plugin inside the class name with this syntax:
<pre id="line175"><span id="__firefox-tidy-id"
style="background-color: rgb(221, 221, 255);"><<span
class="start-tag">input</span><span class="attribute-name"> type</span>=<span
class="attribute-value">"button" </span><span class="attribute-name">name</span>=<span
class="attribute-value">"verifica_disponibilita" </span><span
class="attribute-name"> .....

View 2 Replies View Related

JQuery :: Make A Slideshow That Draws Its Images From A Specific Folder On The Server?

May 24, 2011

I am looking to build a slideshow (basic, with next/previous options, e.g jquery cycle) but I would like it to get the images from a specific folder. So, whenever I want the slideshow updated, I would simply drop the files in a folder and that would do it.

Would this require a php script? If yes, direct me to somewhere to find out more...Or if there are other ways.

View 4 Replies View Related

Build Code Snippet And A Remote Script That Draws A Review Badge On Site?

Mar 8, 2010

How to build the code snippet that a 3rd party would add to their website page and the corresponding remote script that draws a review badge on a site similar to how tripadvisor does it?

You can see an example here if you scroll down to the bottom: http://www.hotel-grandmajestic.cz/en/about-hotel

Here is the source from that webpage code...

View 9 Replies View Related

Project - Odd Or Even Numbers

Oct 20, 2011

My assignment for my programming class is to create a script using JavaScript that asks a user to enter a number in a pop up dialog box on their browser, and then tell them if they entered an odd or an even number. This is what I have come up with so far, whenever I test it on a browser it says that every number is even.

[Code]...

View 7 Replies View Related

JQuery :: Use API In One Of Assigned Project?

Aug 1, 2011

I would like to use JQUERY API in one of my assigned project. I am looking for open source API only, please suggest me if I can go for JQUERY or not..?

View 2 Replies View Related

Drag 'n' Drop Project

Jun 27, 2006

Here is a small test for all those hardcore JavaScript programmers. Is it possible to drag'n'drop a text/image element (eg. A or IMG tag) from one (I)FRAME to another (I)FRAME. This is easy & possible with IE's proprietary ondrag events. However the question is, is there a work-around using standard W3C/Firefox onmousedown, onmouseup, etc. events only? Code:

View 2 Replies View Related

JQuery :: Implementing Next To Last Selector For Project

Mar 18, 2010

I need to implement a next to last selector for our project. I came up with the following code:
jQuery.expr[':'].next_to_last = function(obj, index, m){
var $this = jQuery(obj);
return $this.find(m[3]).last().prev();
};
Is there any problem with this implementation?

View 13 Replies View Related

JQuery :: Proper Way To Override Css For Project

Aug 10, 2011

Very new using jQuery. Anyway, I have the following few lines which create a component on a web page.[code]...

Upon some analysis, I can see that the css does contain the styles used by my div. So now, I would like to change the colors of the component, but I am not sure what is the best practice. Can one override in the div tag the colors, or should one duplicate the .css and change it?

Seeking the best way to perform this that other in the group use.

View 2 Replies View Related

JQuery :: Use PHP To Display Project Gallery?

Mar 19, 2009

I have a site [URL] in which i display project thumbnails on the right, by clicking it, i want that project id to open it's project photos on the left without reloading/refreshing the page. (the data/photos comes from the database using php & mysql)I tried doing that with ajax's XMLHttpRequest, but i can't execute javascript through responseText.

View 1 Replies View Related

SetTimeout Not Firing In WebGL Project

May 1, 2011

I am creating a particle system for WebGL and have created a class to generate individual particles. Since I wanted to control the rate at which these particles were generated, i put a setTimeout function to recall the method at a given rate. However, the setTimeout never fires and loops. I was wondering if anyone could help me. BTW the javascript has been designed to mimic OOP, so its kinda of a weird setup [code]...

View 4 Replies View Related

JQuery :: Using It In A Project To Create Igoogle Panels?

May 6, 2010

what is "div.ui-sortable"Im using it in a project to create Igoogle panels.

View 2 Replies View Related

Calculate The Total Time Worked On The Project?

Nov 16, 2011

There are two text boxes in a HTML form.The first text box takes the time when the user starts to work on a project. The second box takes the time when the user stops working on that project.Now, I would like to calculate the total time worked on that project for that user. That is (stop time - start time). I tried few things without success.

View 4 Replies View Related

Exploring 3D Project - Drag And Drop App Viable?

Nov 9, 2010

I would like to explore a project using javascript . The project is kind of similar to the 3D Room feature on mydeco [URL] and click on 'Design a 3D room' (about a third of the way down the page). The application allows the user to position 3D items in a 3D room as well as viewing that 3D room from two additional angles. I would like to create something similar but for a different use.

Basically it would have similar features as the 3D room but with the following differences:
- There would be no 3D elements/images. All would be 2D.
- The 3D room builder has a panel on the right which allows users to navigate to images via categories. My app would still have the right hand panel, but the images would be 2D
- The rest of the window would just have a single main 2D image in it.
- The user would drop/position 2D images from the right hand panel, on to the main 2D image.
- There would be no need for additional views or for any rendering of images.
- It would have the other functionality at the top of the window such as save, share, undo, redo etc. An additional function would be needed to allow the user to adjust images to be 'above' or 'below' other images.
Also, is there any reason this app opens in a new window instead of running on the website itself?

View 1 Replies View Related

Random Quote Generator Script (For Uni Project)?

Jul 19, 2011

I have to create a website as a project for my university course. Said course has nothing at all to do with computers really so it's really throwing us into the deep end as the majority of us have/had no interest in this particular field.

Regardless, I am creating a website that uses the Random Quote Generator Javascript that I copied from the Hotscripts website. The code details are below and my question is: is there any way I could change the formatting for each quote? For example, change quote 1 to be, say, yellow or bold and change quote 3 to be aligned right and blue? I mainly want to change the colour for each quote but having any other info on how to format it would be really helpful.

var quotes=new Array();
quotes[0] = "This is quote 1.";
quotes[1] = "This is quote 2.";
quotes[2] = "This is quote 3.";

[Code]...

View 3 Replies View Related

JQuery :: Menu Works On Sample Html Page, But Not In Asp.net Project?

May 3, 2010

OK, so jquery code works fine on a sample test html page. However, when I try to execute the exact same code in my asp.net project, it does not work. I have included the scripts and the paths are correct so it has nothing to do with that.

$(function(){ $('ul.jd_menu').jdMenu({ onShow: loadMenu //onHideCheck: onHideCheckMenu, //onHide: onHideMenu, //onClick: onClickMenu, //onAnimate: onAnimate }); $('ul.jd_menu_vertical').jdMenu({onShow: loadMenu, onHide: unloadMenu, offset: -1, onAnimate: onAnimate}); });

That is the section of code it gives me an error on, it says " Object doesn't support this property or method"

Also, even before I run the project, I have a warning in my error list box that says: Error updating JScript Intellisense (C:~~~blah blah jquery-1.4.2.min.js

View 7 Replies View Related

Using JFlip Plugin - Intergrate A Book That Pages Flip Into A Project

Oct 1, 2009

I'm trying to intergrate a book that pages flip into a project I'm working on. For this I am using JFlip a plugin for jQuery.

As seen here: [url]

However two problem's I'm running into are

1. The Transparency goes really strange when I flip the page.

2. I have no idea how to set a setting to let me know what page the user is looking at.

Main Page:

JFlip:

View 5 Replies View Related

Beginner Project: Chrome, Use Of Eval(), Detecting Window Size?

Jul 21, 2009

I have done some ugly hacking in JavaScript before but nothing serious. Now I have decided to learn the language properly, so yesterday I threw together a function plotter that you can see here: balazsbotond dot hu/plotterThe script is here: balazsbotond dot hu/plotter/raphael-test.jsI use Google Chrome as my primary browser. My script works perfectly in every other browser (IE6, IE8, FF, Opera, Safari), but there are some problems in Chrome. Some functions do not work at all (exp()), some do not always work (sin(x) works, x*sin(x) works sometimes, 0.7*x*sin(x) never works). Since I am new to JS and this seems to be a very subtle problem, I have no idea where to start.

I have read that the use of eval() is not recommended because of performance and security reasons. erformance is not a problem here (eval is definitely better here than writing my own expression parser), but what about security? Did my use of eval introduce a security risk in my site (I find this quite unlikely because the whole thing runs on the client side but who knows...)?By the way, is there a way to detect if eval() was not successful?And finally, is there a reliable, cross-browser way of getting the client size of the window? I'm talking about the size without the title bar, toolbars, etc. My solution does not work in IE6 and IE8.

View 5 Replies View Related

Radio Buton Hover Css - Background Color Only Draws A Box Around The Radio Button But Does Not The Actual Radio Color

Mar 24, 2010

l need to apply a hover css on a radio button. Currently the background color only draws a box around the radio button but does not the actual radio color. l dont mind if there is no css even javascript will do

View 1 Replies View Related

JQuery :: Select Class Which Is In The Same Class Of Class, On Which Clicked?

Jun 3, 2010

My code: [URL]... When I click on UpraviƄ in class edit I need add some HTML code to begin and to end of class entry how to I can select class entry in the same class post on which I clicked?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved