Search:
Type: Posts; User: knowj
Search :
Search took 0.03 seconds.
I have setup a site with containers that are 100% height of the body which works as intended.
However when you pull the bottom of the browser up (resize) to make the content longer than the...
Resolved:
SELECT
`p`.`name`
FROM `attributes_entity` `ae`
INNER JOIN `products` `p` ON `ae`.`product_id`=`p`.`id`
INNER JOIN `attributes` `a` ON `ae`.`attribute_id`=`a`.`id`
...
Updated code to add in the missing av.values join:
SELECT
`p`.`id`,
`p`.`name`
FROM `attributes_entity` `ae`
INNER JOIN `products` `p` ON `ae`.`product_id`=`p`.`id`
INNER...
I have the following 4 tables (simplified for example) for a product filter scenario each product. Each product can have multiple attributes which have multiple values (but only ever one assigned to...
Sorted it. Had conflicting selectors on the trigger.
The Jquery:
alert('Rel: '+$("#imageDetail").attr('rel')+' Src: '+$('#imageDetail').attr('src')+' Alt: '+$('#imageDetail').attr('alt')+'');
The HTML:
<a href="chairs-1-high.jpg"...
Update of what im trying to do in PHP in its simplest form (dirty and without error handeling).
Also if it would be better to use .NET for this feel free to move the thread to the .NET forum.
...
I am currently trying to get my head round the Microsoft realms of the development coming from a PHP background.
It seems I am spolit for choice with languages meaning alot of the information I...
It won't work in IE6 though (just like everything else)
<div style="min-width:500px"></div>
The concept sounds simple have an unordered list with for example 20 items and spit it into 4 rows of 5.
Obviously the implementation is more complex with each list element containing a product...
Ended up using internet explorer conditional comments within the html. However this isn't ideal for this type of application.
I am still interested in hearing if anyone else is having/heard about...
We are using jquery within a site we currently have but are experiencing a few issues.
For some reason the browser/version detection on a lot of installations is detecting IE8 as IE6 which is...
I have a tiny little script that i use to reset the form value using the value of the rel if it is empty on blur which I am trying to use again onload. But annoyingly the load doesn't seem to pass...
When you want to check if a value is within a comma separated list SQL makes it easy with the use of IN however I have this the opposite way round.
"SELECT * FROM `table` WHERE col IN (1,2,3,4)"...
2 things:
First ensure that the root you are specifying is right (sounds stupid but catches me out every time)
Second: I assume you have root access via shell. Check the user/group user of the...
I have been playing about with writing a jquery tooltip style effect which works great except for one thing.
When you move the mouse the browser moves the displayed box slightly slower than the...
The issue seems to be something to do with the width and floats. If i change the container width by a few pixels all is well (ish)
Is anyone aware of a bug in IE6 that causes content to disappear that isn't the scroll/resize bug?
I have 3 divs all floated to the left and for some strange reason the middle one just disappears...
Managed to solve it after spending a load of time on the jquery site.
$(document).ready(function() {
// (a little sooner than page load)
$('#categoryMenu ul').hide();...
I am using jquery to simply show and hide items within a category when the link above is clicked. due to my inexperience in javascript/jquery I cannot work out with the documentation how to approach...
There are up to 10 rollover images at any one time. The mouse out is pretty essential unless i set a mouseover on the large image that returns it to its previous state.
change mouseover to click:
$(document).ready(function(){
$(".item1").click(function() {
$("#detail-image").fadeOut("fast", function(){
$("#detail-image").html('<img...